Activity's onConfigurationChanged() not called

712 Views Asked by At

My activity is not calling onConfigurationChanged() and not switching to landscape.

I make no call setRequestedOrientation(int)

Already changed in manifest and nothing

<application
    android:allowBackup="true"
    android:configChanges="orientation|keyboardHidden"
    android:icon="@drawable/ic_launcher_application"
    android:label="@string/app_name"
    android:theme="@style/AppTheme"
    android:uiOptions="none" >
    <activity
        android:name="application.controllers.LoginFrame"
        android:configChanges="keyboardHidden|orientation|screenSize"
        android:noHistory="true"
        android:windowSoftInputMode="stateHidden|adjustResize|adjustPan" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

This is my Activity code:

public class LoginFrame extends AccountAuthenticatorActivity{

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        requestWindowFeature(Window.FEATURE_NO_TITLE);

        setContentView(R.layout.activity_login_frame);

        // loginButton.setBackgroundColor(Color.TRANSPARENT);
        this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
        this.getWindow().setType(WindowManager.LayoutParams.TYPE_INPUT_METHOD);

        System.out.println("RequestedOrientation Login = " + getRequestedOrientation());
        System.out.println("Orientation Login = " + getResources().getConfiguration().orientation);

    }

    @Override
    public void onBackPressed() {
        finish();
    }

    @Override
    public void onConfigurationChanged(Configuration newConfig){
        if(newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE)
            System.out.println("Turn");

        super.onConfigurationChanged(newConfig);
        Crashlytics.getInstance().log(Log.VERBOSE, "orientation.login", "" + newConfig.orientation);
        System.out.println("newConfig orientation = " + newConfig.orientation);
    }

    @Override
    protected void onSaveInstanceState(Bundle savedInstace){
        super.onSaveInstanceState(savedInstace);
    }

    @Override
    protected void onRestoreInstanceState(Bundle savedInstance){
        super.onRestoreInstanceState(savedInstance);
    }

    @Override
    public void onStart(){
        super.onStart();
    }

    @Override
    public void onResume(){
        super.onResume();
    }

    @Override
    public void onStop(){
        super.onStop();
    }

}

res/styles.xml:

<!-- Application theme. -->
<style name="AppTheme" parent="@style/Theme.AppCompat">

    <!-- All customizations that are NOT specific to a particular API-level can go here. -->
    <item name="android:animateFirstView">true</item>
    <item name="android:windowContentOverlay">@null</item>
    <item name="android:windowIsTranslucent">false</item>
    <item name="android:windowNoTitle">true</item>
    <item name="android:backgroundDimEnabled">true</item>

    <!-- Pos HoneyComb device -->
    <item name="android:actionBarStyle">@style/theme.actionbar</item>

    <!-- Support library compatibility -->
    <item name="actionBarStyle">@style/theme.actionbar</item>
</style>

<style name="theme.actionbar" parent="@style/Widget.AppCompat.ActionBar.Solid">
    <item name="android:background">@color/application.actionbar.background</item>
</style>

EDIT

I do not know why the question received -1 was unnecessary this type of behavior. Further because it is a very thorough and hard to be found solution.

After three days looking for a solution, I found this post that helped me to be able to solve the problem. It is enough to erase the line android:windowIsTranslucent in res/styles

0

There are 0 best solutions below