We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c514abf commit 797dff8Copy full SHA for 797dff8
android/AndroidManifest.xml
@@ -11,12 +11,14 @@
11
android:label="@string/app_name"
12
tools:ignore="UnusedAttribute"
13
android:theme="@style/GdxTheme">
14
+ <!-- setting windowSoftInputMode in order to make the inputs "go up" when the keyboard is shown -->
15
<activity
16
android:name="de.sesu8642.feudaltactics.android.AndroidLauncher"
17
18
android:screenOrientation="user"
19
android:configChanges="keyboard|keyboardHidden|navigation|orientation|screenSize|screenLayout"
- android:exported="true">
20
+ android:exported="true"
21
+ android:windowSoftInputMode="adjustResize">
22
<intent-filter>
23
<action android:name="android.intent.action.MAIN"/>
24
<category android:name="android.intent.category.LAUNCHER"/>
0 commit comments