I am using this in my manifest to rotate my app based on screen orientation
android:screenOrientation="sensorLandscape"
android:configChanges="orientation|keyboardHidden|keyboard|screenLayout|screenSize"
The problem is even after I lock my devices screen orientation, app still rotate if I change the orientation of the device.
I tried
android:screenOrientation="user"
But that makes my app rotate to portrait also which I don't want.
Can anyone help me on this?