前もって感謝します。
私は加速度計を使用してゲームアプリケーションで作業しています。しかし、accelerometer.application の「onSensorChange」メソッドで textview を更新すると、問題が発生しました。
このような私のコード。
int nCounter = 0;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mTV_CountTextView = (Textview)findViewById(R.id.TextView);
}
………………
public void onSensorChanged(SensorEvent sensorEvent) {
{
if (sensorEvent.sensor.getType() == Sensor.TYPE_ORIENTATION) {
// Set sensor values as acceleration
yAcceleration = sensorEvent.values[1];
xAcceleration = sensorEvent.values[2];
nCounter++;
mTV_CountTextView.settext(""+nCounter);
}
}
}