From ff9d8dd0b3922dbcb3911cf3515ce5e2b0c6438d Mon Sep 17 00:00:00 2001 From: Charles Lombardo Date: Mon, 25 Sep 2023 18:31:23 -0400 Subject: android: Remove bottom attribute from navigation view Using the "bottom" attribute would break the navigation view and prevent things like rounded corners and lock modes from being applied properly. --- src/android/app/src/main/res/layout/fragment_emulation.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/android/app/src/main/res/layout/fragment_emulation.xml b/src/android/app/src/main/res/layout/fragment_emulation.xml index da97d85c1..0498bc71d 100644 --- a/src/android/app/src/main/res/layout/fragment_emulation.xml +++ b/src/android/app/src/main/res/layout/fragment_emulation.xml @@ -155,7 +155,7 @@ android:id="@+id/in_game_menu" android:layout_width="wrap_content" android:layout_height="match_parent" - android:layout_gravity="start|bottom" + android:layout_gravity="start" app:headerLayout="@layout/header_in_game" app:menu="@menu/menu_in_game" tools:visibility="gone" /> -- cgit v1.2.3 From 3d03e8b8068b701b88425226a0abec7a3dd32186 Mon Sep 17 00:00:00 2001 From: Charles Lombardo Date: Mon, 25 Sep 2023 18:33:21 -0400 Subject: android: Prevent click ripple from appearing on loading card --- src/android/app/src/main/res/layout/fragment_emulation.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/android/app/src/main/res/layout/fragment_emulation.xml b/src/android/app/src/main/res/layout/fragment_emulation.xml index 0498bc71d..750ce094a 100644 --- a/src/android/app/src/main/res/layout/fragment_emulation.xml +++ b/src/android/app/src/main/res/layout/fragment_emulation.xml @@ -32,7 +32,8 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" - android:focusable="false"> + android:focusable="false" + android:clickable="false">