I am having two layout in my application one is (landscape mode) and the second one in (portrait) mode whenever i click the button in first layout to second as well as from second to first it takes time to load the layout.cananyone tell me how i can make the screens to be displayed faster when orientation is done.
Manifest:
<activity
android:name=".farmer.activity.Farmertrade_Activity"
android:configChanges="locale|orientation|screenSize|keyboardHidden"
android:screenOrientation="portrait" />
<activity
android:name=".farmer.activity.FarmerLedgerView_Activity"
android:configChanges="locale|orientation|screenSize|keyboardHidden"
android:screenOrientation="landscape" />