我是android编程的新手,现在我遇到了问题。 我想在netbeans IDE中使用旧的openGL程序中的传感器管理器。 但是当我创建一个扩展activity并实现sensorListener的类时,它不起作用。 你能帮助我吗?
和另一个问题: 如何在我的电脑中模拟运动传感器?
最好的问候
答案 0 :(得分:2)
如何在我的电脑中模拟运动传感器?
查看名为Sensor Simulator
的工具
确保您已宣布
public void onAccuracyChanged(Sensor sensor, int accuracy)
和
public void onSensorChanged(SensorEvent event)
答案 1 :(得分:0)
您需要具备以下方法:
SensorEventListener sel = new SensorEventListener() {
@Override
public void onSensorChanged(SensorEvent event) {
//Your code here
}
@Override
public void onAccuracyChanged(Sensor sensor, int accuracy) {
//Your code here
}
};