这是代码
@Override
public void onSensorChanged(SensorEvent event) {
if (event.sensor.getType() == Sensor.TYPE_ACCELEROMETER) {
getAccelerometer(event);
}
}
private void getAccelerometer(SensorEvent event) {
float[] values = event.values;
//Movement
float x = values[0];
float y = values[1];
float z = values[2];
float accelationSquareRoot = (x * x + y * y + z * z)
/ (SensorManager.GRAVITY_EARTH * SensorManager.GRAVITY_EARTH);
long actualTime = System.currentTimeMillis();
if (accelationSquareRoot >= 2) //
{
if (actualTime - lastUpdate < 200) {
return;
}
if (distance <= 50 && distance > 40) {
view.setBackgroundColor(Color.GREEN);
while (distance > 0) {
distance--;
Integer.toString(distance);
lastUpdate = actualTime;
Toast.makeText(this, distance, Toast.LENGTH_SHORT)
.show();
int distance = Integer.parseInt(distance);
}
if (distance < 40){
view.setBackgroundColor(Color.YELLOW);
}
} else {
view.setBackgroundColor(Color.RED);
}
color = !color;
}
}
每次摇晃设备时,我都会尝试使用距离变量来减少和查看。
这就是代码出错的地方。
int distance = Integer.parseInt(distance);
它要我更改变量的名称。如果我这样做,我的循环将无法工作。
提前致谢!