報(bào)錯(cuò)如下:
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.test2/com.example.test2.MainActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
解決方法:
創(chuàng)建的activity是MainActivity extends ActionBarActivity這樣的架曹。把后面的ActionBarActivity改成Activity烈疚,然后導(dǎo)包场勤,把下面報(bào)錯(cuò)的地方刪掉運(yùn)行就不報(bào)錯(cuò)了乎婿。蔚携。。
感應(yīng)器在Android 1.5 API Level 3 使用了SensorEventListener 代替了SensorListener
而新的方法如下
private SensorEventListener sel = new SensorEventListener()
{
public void onSensorChanged(SensorEvent event)
{
if (event.sensor.getType() == Sensor.TYPE_ACCELEROMETER)
{
event.values; //float[]保存了x,y,z
}
}
public void onAccuracyChanged(Sensor sensor, int accuracy){
? ? ? ? ? ? ? ? ?}
};
Sensor sensor = sensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);
sensorManager.registerListener(sel, sensor, SensorManager.SENSOR_DELAY_NORMAL);