summaryrefslogtreecommitdiff
path: root/Source/Android
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-01-23 21:57:44 -0500
committerCharles Lombardo <clombardo169@gmail.com>2023-01-24 08:25:47 -0500
commit82d0501fc805aa56b59e678a1d8048add4a1b733 (patch)
treef97331268fbf69dcdabf7e76f3b436c7ba05561b /Source/Android
parent9bccf58fdbffa46e49dd08128713ae47d7e53db6 (diff)
Android: Fix rtl layout for in-game menu fragment
Diffstat (limited to 'Source/Android')
-rw-r--r--Source/Android/app/src/main/res/layout/fragment_ingame_menu.xml1
-rw-r--r--Source/Android/app/src/main/res/values/styles.xml3
2 files changed, 3 insertions, 1 deletions
diff --git a/Source/Android/app/src/main/res/layout/fragment_ingame_menu.xml b/Source/Android/app/src/main/res/layout/fragment_ingame_menu.xml
index 8507372b92..df5a104cef 100644
--- a/Source/Android/app/src/main/res/layout/fragment_ingame_menu.xml
+++ b/Source/Android/app/src/main/res/layout/fragment_ingame_menu.xml
@@ -20,6 +20,7 @@
android:maxLines="@integer/game_title_lines"
android:textSize="20sp"
android:textColor="?attr/colorOnSurface"
+ android:textAlignment="viewStart"
tools:text="The Legend of Zelda: The Wind Waker" />
<com.google.android.material.divider.MaterialDivider
diff --git a/Source/Android/app/src/main/res/values/styles.xml b/Source/Android/app/src/main/res/values/styles.xml
index e9753d0e83..df5665b0e4 100644
--- a/Source/Android/app/src/main/res/values/styles.xml
+++ b/Source/Android/app/src/main/res/values/styles.xml
@@ -7,7 +7,8 @@
<item name="android:textColor">?attr/colorOnSurface</item>
<item name="android:textSize">16sp</item>
<item name="android:fontFamily">sans-serif-condensed</item>
- <item name="android:gravity">center_vertical|left</item>
+ <item name="android:gravity">center_vertical|start</item>
+ <item name="android:textAlignment">viewStart</item>
<item name="android:paddingLeft">32dp</item>
<item name="android:paddingRight">32dp</item>
</style>