implemented #6: add option to allow rotation

This commit is contained in:
Josia Pietsch 2024-09-11 13:06:55 +02:00
parent 9a3957be36
commit c89e74205d
Signed by: jrpie
GPG key ID: E70B571D66986A2D
7 changed files with 26 additions and 18 deletions

View file

@ -23,9 +23,8 @@
android:exported="true"
android:excludeFromRecents="true"
android:clearTaskOnLaunch="true"
android:launchMode="singleTask"
android:screenOrientation="portrait"
tools:ignore="LockedOrientationActivity">
android:configChanges="orientation|screenSize"
android:launchMode="singleTask" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.HOME" />
@ -35,20 +34,16 @@
</activity>
<activity
android:name=".tutorial.TutorialActivity"
android:screenOrientation="portrait"
tools:ignore="LockedOrientationActivity">
android:configChanges="orientation|screenSize" >
</activity>
<activity
android:name=".list.ListActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustResize"
tools:ignore="LockedOrientationActivity">
android:windowSoftInputMode="adjustResize" >
</activity>
<activity
android:name=".settings.SettingsActivity"
android:exported="true"
android:screenOrientation="portrait"
tools:ignore="LockedOrientationActivity">
android:configChanges="orientation|screenSize"
android:exported="true" >
<intent-filter>
<action android:name="android.intent.action.APPLICATION_PREFERENCES"/>
<category android:name="android.intent.category.DEFAULT"/>