Hi I currently am creating an app where I am forcing one activity to be in landscape mode.
It works but I keep getting left spacing as if there is an action bar / status bar still to the left of the screen.
Here is my theme:
<style name="Theme.MyApp" parent="Theme.AppCompat.NoActionBar">
<item name="windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
<!--<item name="android:windowFullscreen">true</item>-->
<item name="android:windowTranslucentStatus">true</item>
</style>
Which works fine in all the activities other the the one with this code in the manifest file:
<activity
android:name=".MyActivity"
android:exported="false"
android:configChanges="orientation|keyboardHidden|screenSize"
android:screenOrientation="sensorLandscape"
android:theme="@style/Theme.MyApp"/>
Any help would be great.
Thanks!
