Tengo problemas para decirle a Android que no llame al onCreate()
cuando cambie la orientación. He agregado android:configChanges="orientation"
a mi manifiesto pero aún cuando se cambia la orientación se llama onCreate()
. Aquí está mi código.Android onConfigurationChanged no se llama
AndroidManifest.xml
<activity android:name="SearchMenuActivity" android:theme="@android:style/Theme.NoTitleBar" android:configChanges="orientation"></activity>
SearchMenuActivity.java
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Set the current layout to the search_menu
setContentView(R.layout.search_menu_activity);
Log.d(TAG, "onCreate() Called");
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
//don't reload the current page when the orientation is changed
Log.d(TAG, "onConfigurationChanged() Called");
super.onConfigurationChanged(newConfig);
}
Y mi LogCat salida
06-23 12:33:20.327: DEBUG/APP(2905): onCreate() Called
//Orientation Changes
06-23 12:33:23.842: DEBUG/APP(2905): onCreate() Called
¿Alguien sabe lo que estoy haciendo mal? Gracias.
para mí, el truco era usar android: configChanges = "orientation | keyboardHidden | screenSize" –