Androidスマートフォンを上下逆にすると、アクティビティが回転してレイアウトが上下逆に表示されず、代わりに横向きモードのままになります。非常にシンプルなHelloWorldアプリでこれを試しました。android:configChanges="orientation"
マニフェストに追加しonConfigurationChange()
、アクティビティでオーバーライドして、そこにブレークポイントを設定しました。デバイスを上下逆に回転させると、縦向き(逆さま)から横向きに変更する1つの構成変更が生成されますが、横向きから縦向き(逆さま)に2回目の変更は行われません。これはAndroidの問題ですか、それとも私がしなければならないことがありますか?
マニフェスト:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="hello.world"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="10" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:configChanges="orientation"
android:name=".HelloWorldActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
アクティビティ:
public class HelloWorldActivity
extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
public void onConfigurationChanged(Configuration newConfig)
{
super.onConfigurationChanged(newConfig);
if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE)
{
Log.e("MDO", "orientation change: landscape");
}
else if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT)
{
Log.e("MDO", "orientation change: portrait");
}
}
}