我有一个问题,我找不到答案...
我现在SensorManager
在 Eclipse 中的 Android 游戏中使用 a 。但我想删除它并用代码替换它,以便对象通过手指在屏幕上的触摸移动。
现在我正在使用这个:
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
//sensor
SensorManager sm;
Sensor s;
float sensorx, calibratex = 0;
float sensory, calibratey = 0;
boolean default_lanscape = false;
//sensors
sm = (SensorManager) context.getSystemService(Context.SENSOR_SERVICE);
if (sm.getSensorList(Sensor.TYPE_ACCELEROMETER).size() != 0) {
s = sm.getSensorList(Sensor.TYPE_ACCELEROMETER).get(0);
sm.registerListener(this, s, SensorManager.SENSOR_DELAY_NORMAL);
}
我必须使用哪个功能才能通过触摸移动?
非常感谢!