summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/layout/fragment_addons.xml
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-01-26 05:01:44 +0100
committerGitHub <noreply@github.com>2024-01-26 05:01:44 +0100
commit4526fdaf642d092ce1a6f5b1da4adf5eb4793005 (patch)
tree77d2a1b9420e00a11cdb3899798ca9b4c71ae89a /src/android/app/src/main/res/layout/fragment_addons.xml
parentMerge pull request #12798 from liamwhite/cmif-fixes (diff)
parentandroid: Disable default focus highlight on views that shouldn't be selected (diff)
downloadyuzu-4526fdaf642d092ce1a6f5b1da4adf5eb4793005.tar
yuzu-4526fdaf642d092ce1a6f5b1da4adf5eb4793005.tar.gz
yuzu-4526fdaf642d092ce1a6f5b1da4adf5eb4793005.tar.bz2
yuzu-4526fdaf642d092ce1a6f5b1da4adf5eb4793005.tar.lz
yuzu-4526fdaf642d092ce1a6f5b1da4adf5eb4793005.tar.xz
yuzu-4526fdaf642d092ce1a6f5b1da4adf5eb4793005.tar.zst
yuzu-4526fdaf642d092ce1a6f5b1da4adf5eb4793005.zip
Diffstat (limited to 'src/android/app/src/main/res/layout/fragment_addons.xml')
-rw-r--r--src/android/app/src/main/res/layout/fragment_addons.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/android/app/src/main/res/layout/fragment_addons.xml b/src/android/app/src/main/res/layout/fragment_addons.xml
index a25e82766..b029b4209 100644
--- a/src/android/app/src/main/res/layout/fragment_addons.xml
+++ b/src/android/app/src/main/res/layout/fragment_addons.xml
@@ -11,6 +11,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
+ android:touchscreenBlocksFocus="false"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
@@ -19,6 +20,7 @@
android:id="@+id/toolbar_addons"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
+ android:touchscreenBlocksFocus="false"
app:navigationIcon="@drawable/ic_back" />
</com.google.android.material.appbar.AppBarLayout>
@@ -28,6 +30,8 @@
android:layout_width="match_parent"
android:layout_height="0dp"
android:clipToPadding="false"
+ android:defaultFocusHighlightEnabled="false"
+ android:nextFocusDown="@id/button_install"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"