在评论我的所有代码以了解错误的位置之后,我发现它来自mDisplay.getRotation()。 我的代码的一般想法是从加速度计获取任何方向的好信息。 这是我的代码
public void onSensorChanged(SensorEvent event) {
// TODO Auto-generated method stub
// Récupérer les valeurs du capteur
float x, y, z;
String s1 = "stringX", s2 = "stringY", s3 = "stringZ";
if (event.sensor.getType() == Sensor.TYPE_ACCELEROMETER) {
switch (mDisplay.getRotation()) {
case Surface.ROTATION_0:
x = event.values[0];
y = event.values[1];
s1 = "" + x;
s2 = "" + y;
break;
case Surface.ROTATION_90:
x = -event.values[1];
y = event.values[0];
s1 = "" + x;
s2 = "" + y;
break;
case Surface.ROTATION_180:
x = -event.values[0];
y = -event.values[1];
s1 = "" + x;
s2 = "" + y;
break;
case Surface.ROTATION_270:
x = event.values[1];
y = -event.values[0];
s1 = "" + x;
s2 = "" + y;
break;
}
z = event.values[2];
s3 = "" + z;
tvx.setText(s1);
tvy.setText(s2);
tvz.setText(s3);
}
}
我还使用
在onCreate()之前声明了显示private Display mDisplay;
但我还有javaNullPointer:s
谢谢你们。
答案 0 :(得分:0)
你需要
mDisplay = ((WindowManager) getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay();