我正在尝试根据用户倾斜设备的方式移动 ImageView。我还在学习 Android 开发,所以我对传感器不太了解。我已经尝试过使用它,但我不确定之后该怎么做,但我猜我在正确的轨道上。
ImageView image = (ImageView) findViewById(R.id.image);
SensorManager mSensorManager = (SensorManager) getSystemService(Context.SENSOR_SERVICE);
Sensor mSensor = mSensorManager.getDefaultSensor(Sensor.TYPE_GRAVITY);
任何提示都会有所帮助谢谢!