问题:pad平放在桌子上,无任何操作,activity会反复进入onDestroy onCreate方法
加了此属性android:configChanges="keyboardHidden|orientation",好了,可是我并没有进行横竖屏切换
activity中注册了180度重力感应的代码new MySensorEventListener(this).register(); 可是也没有进行180度的切换
所以问题是好了,但问题的确切出处还不清楚
1,MySensorEventListener 180度重力感应类
package cn.zhl.util;
import android.app.Activity;
import android.content.pm.ActivityInfo;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
public class MySensorEventListener {
Acti