My application having landscape and portrait mode. so I designed two layouts for each mode. In manifest file I set the below code.
android:configChanges="orientation"
it's working fine but the activity restarts on every orientation changes. so I add the following line to avoid the recreate issue.
android:configChanges="keyboardHidden|orientation|screenSize"
Now the activity is not recreating but it also not taking the landscape mode design.
please help me to solve this issue friends