我实际上遇到以下问题:当我更改模拟器的方向时,我无法输入方法onConfigurationChanged
。
这是我的方法:
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
// Checks the orientation of the screen
if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
Log.i("ORIENTATION", "CHANGED TO LANDSCAPE");
} else if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT){
Log.i("ORIENTATION", "CHANGED TO PORTRAIT");
}
}
我改变方向时没有任何日志..
我已经读过旧版本关于清单的修改,旧的版本是:
**android:configChanges="orientation|keyboard"**
新的是:
**android:configChanges="orientation|keyboard|screenSize"**
我的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.fruitsapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.fruitsapp.MenuFruitsActivity"
android:label="@string/app_name"
android:configChanges="orientation|keyboard|screenSize"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:label="@string/app_name"
android:name=".DescriptionFruitActivity"
android:configChanges="orientation|keyboard|screenSize">
</activity>
</application>
</manifest>
不幸的是,经过大量的尝试后,我仍然没有Log发出信号表明我的方向发生了变化..
问候。
答案 0 :(得分:0)
试试这个......
android:configChanges="orientation|keyboardHidden|screenSize"
希望这有帮助。