summaryrefslogtreecommitdiff
path: root/Source/Android/app/src
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-01-23 21:56:23 -0500
committerCharles Lombardo <clombardo169@gmail.com>2023-01-24 08:25:47 -0500
commit9bccf58fdbffa46e49dd08128713ae47d7e53db6 (patch)
tree0b3416b9a9ddda97b8bd76f9fb238d753762ce31 /Source/Android/app/src
parentab0ab1aa7d24ef2210d8fe27a7130506ad7c83ee (diff)
Android: Fix rtl layout for grid options dialog
Diffstat (limited to 'Source/Android/app/src')
-rw-r--r--Source/Android/app/src/main/res/layout/fragment_grid_options.xml2
-rw-r--r--Source/Android/app/src/main/res/layout/fragment_grid_options_tv.xml5
2 files changed, 6 insertions, 1 deletions
diff --git a/Source/Android/app/src/main/res/layout/fragment_grid_options.xml b/Source/Android/app/src/main/res/layout/fragment_grid_options.xml
index 427de0110b..cbdeb453b3 100644
--- a/Source/Android/app/src/main/res/layout/fragment_grid_options.xml
+++ b/Source/Android/app/src/main/res/layout/fragment_grid_options.xml
@@ -33,6 +33,7 @@
android:layout_marginEnd="24dp"
android:layout_marginStart="24dp"
android:text="@string/download_game_covers"
+ android:textAlignment="viewStart"
app:layout_constraintBottom_toBottomOf="@+id/switch_download_covers"
app:layout_constraintEnd_toStartOf="@+id/switch_download_covers"
app:layout_constraintStart_toStartOf="parent"
@@ -66,6 +67,7 @@
android:layout_marginEnd="24dp"
android:layout_marginStart="24dp"
android:text="@string/show_titles_in_game_list"
+ android:textAlignment="viewStart"
app:layout_constraintBottom_toBottomOf="@+id/switch_show_titles"
app:layout_constraintEnd_toStartOf="@+id/switch_show_titles"
app:layout_constraintStart_toStartOf="parent"
diff --git a/Source/Android/app/src/main/res/layout/fragment_grid_options_tv.xml b/Source/Android/app/src/main/res/layout/fragment_grid_options_tv.xml
index b3f4d407a0..dd81b2b4f1 100644
--- a/Source/Android/app/src/main/res/layout/fragment_grid_options_tv.xml
+++ b/Source/Android/app/src/main/res/layout/fragment_grid_options_tv.xml
@@ -24,11 +24,14 @@
<TextView
android:id="@+id/text_download_covers"
- android:layout_width="wrap_content"
+ android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="24dp"
+ android:layout_marginEnd="24dp"
android:text="@string/download_game_covers"
+ android:textAlignment="viewStart"
app:layout_constraintBottom_toBottomOf="@+id/switch_download_covers"
+ app:layout_constraintEnd_toStartOf="@+id/switch_download_covers"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/switch_download_covers" />