0

layout-portで 1 つを定義し、もう1 つを で定義する 2 つのレイアウトを持つアクティビティを作成しましたlayout-land。彼らは今のところうまくいっています。

onCreateしかし、問題は、向きが変更されたときに再度呼び出されたくないということです。android:configChanges="orientation"マニフェストファイルで属性を指定し、アクティビティで次のコードを使用するのを防ぐために

@Override
    public void onConfigurationChanged(Configuration newConfig) {
      super.onConfigurationChanged(newConfig);

    }

アプリケーションを実行して実際のデバイスで向きを変更すると、デバイスを傾けてアクティビティ状態を変更しなくても、Android が縦向きレイアウトのみを使用していることがわかります。

したがって、基本的にonCreateは呼び出されませんが、デバイスが傾いたときにデバイスがランドスケープモードを使用していません。

4

1 に答える 1

0

マニフェストのアクティビティに android:configChanges="orientation|screenSize" を追加します。

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.orientationchange"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="15" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main"            
            android:configChanges="orientation|screenSize">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>


import android.os.Bundle;
import android.app.Activity;
import android.content.res.Configuration;
import android.widget.Toast;

public class MainActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    @Override
    public void onConfigurationChanged(Configuration newConfig) {
        super.onConfigurationChanged(newConfig);

        // Checks the orientation of the screen
        if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
            Toast.makeText(this, "landscape", Toast.LENGTH_SHORT).show();
        } else if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT){
            Toast.makeText(this, "portrait", Toast.LENGTH_SHORT).show();
        }
    }
}
于 2012-11-19T15:52:28.993 に答える