summaryrefslogtreecommitdiff
path: root/Source/Android/app/src
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2023-01-09 21:40:18 +0100
committerGitHub <noreply@github.com>2023-01-09 21:40:18 +0100
commitacafb0770713d53a48b3142cb6ef18df52546332 (patch)
treee378636f59418a0a27d6e651db4487e6bf1d7fda /Source/Android/app/src
parent653e0ccf280768e8474952767ee4da06b7e9b607 (diff)
parentf49f3441b3369099f9d689b10a44c4c92f70a030 (diff)
Merge pull request #11421 from t895/disable-header-focus
Android: Disable focus on non-actionable UI
Diffstat (limited to 'Source/Android/app/src')
-rw-r--r--Source/Android/app/src/main/res/layout-land/activity_user_data.xml1
-rw-r--r--Source/Android/app/src/main/res/layout-w680dp-land/activity_convert.xml1
-rw-r--r--Source/Android/app/src/main/res/layout/activity_cheats.xml1
-rw-r--r--Source/Android/app/src/main/res/layout/activity_convert.xml1
-rw-r--r--Source/Android/app/src/main/res/layout/activity_main.xml1
-rw-r--r--Source/Android/app/src/main/res/layout/activity_riivolution_boot.xml1
-rw-r--r--Source/Android/app/src/main/res/layout/activity_settings.xml1
-rw-r--r--Source/Android/app/src/main/res/layout/activity_user_data.xml1
-rw-r--r--Source/Android/app/src/main/res/layout/list_item_header.xml2
9 files changed, 9 insertions, 1 deletions
diff --git a/Source/Android/app/src/main/res/layout-land/activity_user_data.xml b/Source/Android/app/src/main/res/layout-land/activity_user_data.xml
index 52f6b173fd..9b141d96e8 100644
--- a/Source/Android/app/src/main/res/layout-land/activity_user_data.xml
+++ b/Source/Android/app/src/main/res/layout-land/activity_user_data.xml
@@ -150,6 +150,7 @@
android:layout_height="0dp"
android:layout_gravity="bottom"
android:clickable="true"
+ android:focusable="false"
android:background="@android:color/transparent" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
diff --git a/Source/Android/app/src/main/res/layout-w680dp-land/activity_convert.xml b/Source/Android/app/src/main/res/layout-w680dp-land/activity_convert.xml
index 78dfcbd0cf..9b4760b04b 100644
--- a/Source/Android/app/src/main/res/layout-w680dp-land/activity_convert.xml
+++ b/Source/Android/app/src/main/res/layout-w680dp-land/activity_convert.xml
@@ -89,6 +89,7 @@
android:layout_height="0dp"
android:layout_gravity="bottom"
android:clickable="true"
+ android:focusable="false"
android:background="@android:color/transparent" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
diff --git a/Source/Android/app/src/main/res/layout/activity_cheats.xml b/Source/Android/app/src/main/res/layout/activity_cheats.xml
index f8be839551..b1040d33ca 100644
--- a/Source/Android/app/src/main/res/layout/activity_cheats.xml
+++ b/Source/Android/app/src/main/res/layout/activity_cheats.xml
@@ -69,6 +69,7 @@
android:layout_gravity="bottom"
android:background="@android:color/transparent"
android:clickable="true"
+ android:focusable="false"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
diff --git a/Source/Android/app/src/main/res/layout/activity_convert.xml b/Source/Android/app/src/main/res/layout/activity_convert.xml
index f2072d0037..66ac49594a 100644
--- a/Source/Android/app/src/main/res/layout/activity_convert.xml
+++ b/Source/Android/app/src/main/res/layout/activity_convert.xml
@@ -87,6 +87,7 @@
android:layout_height="0dp"
android:layout_gravity="bottom"
android:clickable="true"
+ android:focusable="false"
android:background="@android:color/transparent" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
diff --git a/Source/Android/app/src/main/res/layout/activity_main.xml b/Source/Android/app/src/main/res/layout/activity_main.xml
index 9ce601de0d..a31a326c8e 100644
--- a/Source/Android/app/src/main/res/layout/activity_main.xml
+++ b/Source/Android/app/src/main/res/layout/activity_main.xml
@@ -48,6 +48,7 @@
android:layout_height="0dp"
android:layout_gravity="bottom"
android:clickable="true"
+ android:focusable="false"
android:background="@android:color/transparent" />
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
diff --git a/Source/Android/app/src/main/res/layout/activity_riivolution_boot.xml b/Source/Android/app/src/main/res/layout/activity_riivolution_boot.xml
index 7203dd15ed..766bdaea7d 100644
--- a/Source/Android/app/src/main/res/layout/activity_riivolution_boot.xml
+++ b/Source/Android/app/src/main/res/layout/activity_riivolution_boot.xml
@@ -104,6 +104,7 @@
android:layout_height="0dp"
android:layout_gravity="bottom"
android:clickable="true"
+ android:focusable="false"
android:background="@android:color/transparent" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
diff --git a/Source/Android/app/src/main/res/layout/activity_settings.xml b/Source/Android/app/src/main/res/layout/activity_settings.xml
index 561755a5f6..4b2d96dfb6 100644
--- a/Source/Android/app/src/main/res/layout/activity_settings.xml
+++ b/Source/Android/app/src/main/res/layout/activity_settings.xml
@@ -45,6 +45,7 @@
android:layout_height="0dp"
android:layout_gravity="bottom"
android:clickable="true"
+ android:focusable="false"
android:background="@android:color/transparent" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
diff --git a/Source/Android/app/src/main/res/layout/activity_user_data.xml b/Source/Android/app/src/main/res/layout/activity_user_data.xml
index 849e4668cb..8eae1fa4d9 100644
--- a/Source/Android/app/src/main/res/layout/activity_user_data.xml
+++ b/Source/Android/app/src/main/res/layout/activity_user_data.xml
@@ -127,6 +127,7 @@
android:layout_height="0dp"
android:layout_gravity="bottom"
android:clickable="true"
+ android:focusable="false"
android:background="@android:color/transparent" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
diff --git a/Source/Android/app/src/main/res/layout/list_item_header.xml b/Source/Android/app/src/main/res/layout/list_item_header.xml
index 599fe840f1..ba349cebcf 100644
--- a/Source/Android/app/src/main/res/layout/list_item_header.xml
+++ b/Source/Android/app/src/main/res/layout/list_item_header.xml
@@ -3,7 +3,7 @@
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
- android:focusable="true"
+ android:focusable="false"
android:layout_height="wrap_content">
<TextView