Skip to content

Commit

Permalink
#629 Fix system UI overdraw on Android 15
Browse files Browse the repository at this point in the history
  • Loading branch information
AEFeinstein committed Oct 8, 2024
1 parent d4c1fbf commit 23f6c80
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion mobile/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@
<activity
android:name=".FamiliarActivity"
android:exported="true"
android:launchMode="singleTask">
android:launchMode="singleTask"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down
3 changes: 2 additions & 1 deletion mobile/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/color_background">
android:background="?attr/color_background"
android:fitsSystemWindows="true">

<LinearLayout
android:layout_width="match_parent"
Expand Down

0 comments on commit 23f6c80

Please sign in to comment.