屏幕旋转检测在高版本系统中无法实现。。
本帖最后由 itakeblue 于 2013-12-27 16:13:20 编辑 AndroidManifest.xml中
<activity android:name=".MyActivity"
android:configChanges="orientation"
android:label="@string/app_name">
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
Toast.makeText(this, "横屏模式", Toast.LENGTH_SHORT).show();
} else if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT){
Toast.makeText(this, "竖屏模式", Toast.LENGTH_SHORT).show();
}
}