Skip to content

Commit 797dff8

Browse files
committed
make the inputs "go up" when the keyboard is shown
closes #52
1 parent c514abf commit 797dff8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

android/AndroidManifest.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@
1111
android:label="@string/app_name"
1212
tools:ignore="UnusedAttribute"
1313
android:theme="@style/GdxTheme">
14+
<!-- setting windowSoftInputMode in order to make the inputs "go up" when the keyboard is shown -->
1415
<activity
1516
android:name="de.sesu8642.feudaltactics.android.AndroidLauncher"
1617
android:label="@string/app_name"
1718
android:screenOrientation="user"
1819
android:configChanges="keyboard|keyboardHidden|navigation|orientation|screenSize|screenLayout"
19-
android:exported="true">
20+
android:exported="true"
21+
android:windowSoftInputMode="adjustResize">
2022
<intent-filter>
2123
<action android:name="android.intent.action.MAIN"/>
2224
<category android:name="android.intent.category.LAUNCHER"/>

0 commit comments

Comments
 (0)