溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何在Android中使用方向傳感器

發(fā)布時(shí)間:2021-05-17 17:21:46 來源:億速云 閱讀:184 作者:Leah 欄目:移動(dòng)開發(fā)

本篇文章為大家展示了如何在Android中使用方向傳感器,內(nèi)容簡明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

在應(yīng)用程序中使用SensorManager.getOrientation()來獲得原始數(shù)據(jù)。

public static float[] getOrientation (float[] R, float[] values)

第一個(gè)參數(shù)是R用來保存磁場和加速度的數(shù)據(jù),通過該函數(shù)獲取方位角。

第二個(gè)參數(shù)是函數(shù)輸出,數(shù)據(jù)自動(dòng)填充。

  • values[0]:方向角,但用(磁場+加速度)得到的數(shù)據(jù)范圍是(-180~180),也就是說,0表示正北,90表示正東,180/-180表示正南,-90表示正西。而直接通過方向感應(yīng)器數(shù)據(jù)范圍是(0~359)360/0表示正北,90表示正東,180表示正南,270表示正西。

  • values[1]:pitch 傾斜角即由靜止?fàn)顟B(tài)開始,前后翻轉(zhuǎn),手機(jī)頂部往上抬起(0~-90),手機(jī)尾部往上抬起(0~90)

  • values[2]:roll 旋轉(zhuǎn)角 即由靜止?fàn)顟B(tài)開始,左右翻轉(zhuǎn),手機(jī)左側(cè)抬起(0~90),手機(jī)右側(cè)抬起(0~-90)

通過函數(shù)getRotationMatrix獲取R

public static boolean getRotationMatrix (float[] R, float[] I, float[] gravity, float[] geomagnetic)

注冊(cè)監(jiān)聽

sensorManager.registerListener(this, acc_sensor, SensorManager.SENSOR_DELAY_GAME); 
sensorManager.registerListener(this, mag_sensor,SensorManager.SENSOR_DELAY_GAME);

主要代碼

import android.app.Activity; 
import android.hardware.Sensor; 
import android.hardware.SensorEvent; 
import android.hardware.SensorEventListener; 
import android.hardware.SensorManager; 
import android.os.Bundle; 
import android.view.Menu; 
import android.widget.TextView; 
 
public class MainActivity extends Activity implements SensorEventListener{ 
 
  private SensorManager sensorManager; 
  private Sensor acc_sensor; 
  private Sensor mag_sensor; 
  //加速度傳感器數(shù)據(jù) 
  float accValues[] = new float[3]; 
  //地磁傳感器數(shù)據(jù) 
  float magValues[] = new float[3]; 
  //旋轉(zhuǎn)矩陣,用來保存磁場和加速度的數(shù)據(jù) 
  float r[] = new float[9]; 
  //模擬方向傳感器的數(shù)據(jù)(原始數(shù)據(jù)為弧度) 
  float values[] = new float[3]; 
  TextView showTV = null; 
  
  @Override 
  protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
    show_change=(TextView) findViewById(R.id.show_change); 
    sensorManager = (SensorManager) getSystemService(SENSOR_SERVICE); 
    acc_sensor = sensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER); 
    mag_sensor = sensorManager.getDefaultSensor(Sensor.TYPE_MAGNETIC_FIELD); 
    // 注冊(cè)監(jiān)聽: 
    sensorManager.registerListener(this, acc_sensor, SensorManager.SENSOR_DELAY_GAME); 
    sensorManager.registerListener(this, mag_sensor,SensorManager.SENSOR_DELAY_GAME); 
  } 
 
  @Override 
  public boolean onCreateOptionsMenu(Menu menu) { 
    // Inflate the menu; this adds items to the action bar if it is present. 
    getMenuInflater().inflate(R.menu.main, menu); 
    return true; 
  }
   
  // 回調(diào)方法 
  @Override 
  public void onSensorChanged(SensorEvent event) { 
    if(event.sensor.getType() == Sensor.TYPE_ACCELEROMETER){ 
      accValues = event.values.clone();
    } 
    else if(event.sensor.getType() == Sensor.TYPE_MAGNETIC_FIELD){ 
      magValues = event.values.clone();
    }
    
    /**
     * r:要填充的旋轉(zhuǎn)數(shù)組 
     * I: 將磁場數(shù)據(jù)轉(zhuǎn)換進(jìn)實(shí)際的重力坐標(biāo)中,一般默認(rèn)情況下可以設(shè)置為null 
     * gravity: 加速度傳感器數(shù)據(jù) 
     * geomagnetic:地磁傳感器數(shù)據(jù) 
     */ 
    SensorManager.getRotationMatrix(r, null, accValues, magValues);
     
    /** 
     * R:旋轉(zhuǎn)數(shù)組 
     * values:模擬方向傳感器的數(shù)據(jù) 
     */ 
    SensorManager.getOrientation(r, values); 
     
    //將弧度轉(zhuǎn)化為角度后輸出 
    StringBuffer buff = new StringBuffer(); 
    for(float value : values){ 
      value=(float) Math.toDegrees(value); 
      buff.append(value + " "); 
    } 
    
    showTV.setText(buff.toString());   
  } 
   
  @Override 
  public void onAccuracyChanged(Sensor sensor, int accuracy) { 
  } 
}

Android是什么

Android是一種基于Linux內(nèi)核的自由及開放源代碼的操作系統(tǒng),主要使用于移動(dòng)設(shè)備,如智能手機(jī)和平板電腦,由美國Google公司和開放手機(jī)聯(lián)盟領(lǐng)導(dǎo)及開發(fā)。

上述內(nèi)容就是如何在Android中使用方向傳感器,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI