- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
Android 是否有 didUpdateHeading(来自 iOS)的等价物?是否有使用它旋转 map View 的示例代码?
搜索了很多,但找不到有用的提示。
提前致谢。
编辑:让我解释一下我的问题:在 IOS 中,当设备更改其标题时,委托(delegate)对象会调用其方法:“didUpdateHeading”。在 Android 中,我可以找到“onLocationChanged”来获取坐标,但没有标题信息。如何在 Android 中获取标题信息?
最佳答案
package com.exercise.AndroidCompass;
import java.util.List;
import android.app.Activity;
import android.content.Context;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import android.os.Bundle;
import android.widget.Toast;
public class AndroidCompass extends Activity {
private static SensorManager mySensorManager;
private boolean sersorrunning;
private MyCompassView myCompassView;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
myCompassView = (MyCompassView)findViewById(R.id.mycompassview);
mySensorManager = (SensorManager)getSystemService(Context.SENSOR_SERVICE);
List<Sensor> mySensors = mySensorManager.getSensorList(Sensor.TYPE_ORIENTATION);
if(mySensors.size() > 0){
mySensorManager.registerListener(mySensorEventListener, mySensors.get(0), SensorManager.SENSOR_DELAY_NORMAL);
sersorrunning = true;
Toast.makeText(this, "Start ORIENTATION Sensor", Toast.LENGTH_LONG).show();
}
else{
Toast.makeText(this, "No ORIENTATION Sensor", Toast.LENGTH_LONG).show();
sersorrunning = false;
finish();
}
}
private SensorEventListener mySensorEventListener = new SensorEventListener(){
@Override
public void onAccuracyChanged(Sensor sensor, int accuracy) {
// TODO Auto-generated method stub
}
@Override
public void onSensorChanged(SensorEvent event) {
// TODO Auto-generated method stub
myCompassView.updateDirection((float)event.values[0]);
}
};
来源:http://android-er.blogspot.com/2010/08/simple-compass-sensormanager-and.html
http://developer.android.com/reference/android/hardware/SensorManager.html
应该是您要查找的内容。 OnSensorChanged
方法应提供相同的功能。 (float)event.values[0]
是您的标题。
只需阅读您的赏金文本。从我研究过的所有内容以及我的一般经验来看,这是唯一的方法。但是,我提供的示例将通过复制和粘贴快速为您提供所需内容。
关于android didUpdateHeading(位置管理器)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11186104/
Android 是否有 didUpdateHeading(来自 iOS)的等价物?是否有使用它旋转 map View 的示例代码? 搜索了很多,但找不到有用的提示。 提前致谢。 编辑:让我解释一下我的
我想用罗盘来更新航向。但是我的 didUpdateHeading 没有调用。我是 iOS 的新手。请帮助任何帮助将不胜感激。 @interface ViewController : UIViewCon
我正在尝试获取设备的航向信息,以便使用磁航向和真实航向之间的差异来确定用户位置的磁偏角。为此,我有一个 Helper 类和我的 MainVc (mvc)。在我的助手类 init 方法中,我执行以下操作
使用 XCode 版本 9.0 (9A235),但使用 Swift 3.x 我的应用程序在 iOS 10.x 上工作正常,调用的 didUpdateHeading 看起来不错,但在 iOS 11.x
我是一名优秀的程序员,十分优秀!