永远不会调用onConfigurationChange

时间:2013-11-15 20:06:35

标签: onconfigurationchanged

所以我有简单的代码,我只想在屏幕方向改变时更改布局。

package com.example.asdasd;

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


public class MainActivity extends Activity {

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

    public void onConfigurationChange(Configuration newConfig){
    super.onConfigurationChanged(newConfig);
    setContentView(R.layout.asdasd);
    System.out.println("orientation---"+getResources().getConfiguration().orientation);
}

}

我的清单是

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.asdasd"
    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.asdasd.MainActivity"
            android:label="@string/app_name" 
            android:configChanges="keyboardHidden|orientation|screenSize">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

因此,当我在模拟器上尝试这个并在num上使用ctrl + f12或9和7时,屏幕翻转但没有任何事情发生,我的布局保持不变,它不会工作。从未调用onConfigurationChange,从未到达System.out.println。

0 个答案:

没有答案