Skip to content

Commit 8b3d3be

Browse files
committed
Bug fix (keyboard issue on folding devices)
A bug causing issues on folding devices that would block the textbox from being able to receive text input has been fixed by adding android:windowSoftInputMode="adjustPan" to the manifest allowing it to override so the current focus is never obscured by the keyboard
1 parent d108852 commit 8b3d3be

4 files changed

Lines changed: 276 additions & 1 deletion

File tree

.idea/deploymentTargetSelector.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/other.xml

Lines changed: 263 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@
3636
<activity
3737
android:name=".NotesTakerActivity"
3838
android:exported="false"
39+
android:windowSoftInputMode="adjustPan"
40+
android:alwaysRetainTaskState="true"
3941
android:theme="@style/Theme.ProNotes.NoActionBar" />
4042
<activity
4143
android:name=".OpenSettings"

0 commit comments

Comments
 (0)