I am working with a Real time app which contains Tabs through out the application. When I try to switch the orientation between portrait and landscape, I have code to show a separate layout for landscape. For this I have used the onConfigurationChanged method as follows
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
if(newConfig.orientation==Configuration.ORIENTATION_PORTRAIT){
setContentView(R.layout.eventslist);
}else if(newConfig.orientation==Configuration.ORIENTATION_LANDSCAPE){
setContentView(R.layout.eventstimeline);
}
}
And also in the manifest file for that particular activity I have used two attributes as follows
android:screenOrientation="sensor"
android:configChanges="orientation|keyboardHidden"
But when I rotate the device I cannot see the separate layout for the landscape mode which I have specified in onConfigurationChanged. Also I don't want to see the tabs in the landscape mode. Any idea about this.