summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-03-22 10:27:14 +0100
committerbunnei <bunneidev@gmail.com>2023-06-03 09:05:46 +0200
commitd9e7e71a8ebb3b4a3cc86330fb88ea605ce36b15 (patch)
treed1e6a1dfef2dd2b597c948bff184d5bb4f4c6713
parentandroid: Use ellipsis character (diff)
downloadyuzu-d9e7e71a8ebb3b4a3cc86330fb88ea605ce36b15.tar
yuzu-d9e7e71a8ebb3b4a3cc86330fb88ea605ce36b15.tar.gz
yuzu-d9e7e71a8ebb3b4a3cc86330fb88ea605ce36b15.tar.bz2
yuzu-d9e7e71a8ebb3b4a3cc86330fb88ea605ce36b15.tar.lz
yuzu-d9e7e71a8ebb3b4a3cc86330fb88ea605ce36b15.tar.xz
yuzu-d9e7e71a8ebb3b4a3cc86330fb88ea605ce36b15.tar.zst
yuzu-d9e7e71a8ebb3b4a3cc86330fb88ea605ce36b15.zip
-rw-r--r--src/android/app/src/main/res/layout/card_game.xml2
-rw-r--r--src/android/app/src/main/res/layout/list_item_setting.xml2
-rw-r--r--src/android/app/src/main/res/layout/list_item_setting_switch.xml3
3 files changed, 6 insertions, 1 deletions
diff --git a/src/android/app/src/main/res/layout/card_game.xml b/src/android/app/src/main/res/layout/card_game.xml
index a107fec0f..fb5dd0e66 100644
--- a/src/android/app/src/main/res/layout/card_game.xml
+++ b/src/android/app/src/main/res/layout/card_game.xml
@@ -55,6 +55,7 @@
android:ellipsize="end"
android:maxLines="2"
android:paddingTop="8dp"
+ android:textAlignment="viewStart"
app:layout_constraintEnd_toEndOf="@+id/card_game_art"
app:layout_constraintStart_toStartOf="@+id/card_game_art"
app:layout_constraintTop_toBottomOf="@+id/card_game_art"
@@ -69,6 +70,7 @@
android:lines="1"
android:maxLines="1"
android:paddingTop="8dp"
+ android:textAlignment="viewStart"
app:layout_constraintEnd_toEndOf="@+id/card_game_art"
app:layout_constraintStart_toStartOf="@+id/card_game_art"
app:layout_constraintTop_toBottomOf="@+id/text_game_title"
diff --git a/src/android/app/src/main/res/layout/list_item_setting.xml b/src/android/app/src/main/res/layout/list_item_setting.xml
index 1df218302..4ff794338 100644
--- a/src/android/app/src/main/res/layout/list_item_setting.xml
+++ b/src/android/app/src/main/res/layout/list_item_setting.xml
@@ -22,6 +22,7 @@
android:layout_marginEnd="@dimen/spacing_large"
android:layout_marginStart="@dimen/spacing_large"
android:textSize="16sp"
+ android:textAlignment="viewStart"
tools:text="Setting Name" />
<TextView
@@ -36,6 +37,7 @@
android:layout_marginStart="@dimen/spacing_large"
android:layout_marginTop="@dimen/spacing_small"
android:visibility="visible"
+ android:textAlignment="viewStart"
tools:text="@string/app_disclaimer" />
</RelativeLayout>
diff --git a/src/android/app/src/main/res/layout/list_item_setting_switch.xml b/src/android/app/src/main/res/layout/list_item_setting_switch.xml
index 5315be3ae..dbed0948c 100644
--- a/src/android/app/src/main/res/layout/list_item_setting_switch.xml
+++ b/src/android/app/src/main/res/layout/list_item_setting_switch.xml
@@ -28,7 +28,7 @@
android:layout_marginStart="@dimen/spacing_large"
android:layout_marginTop="@dimen/spacing_small"
android:layout_toStartOf="@+id/switch_widget"
- android:textAlignment="textStart"
+ android:textAlignment="viewStart"
tools:text="@string/frame_limit_enable_description" />
<TextView
@@ -43,6 +43,7 @@
android:layout_marginTop="@dimen/spacing_large"
android:layout_toStartOf="@+id/switch_widget"
android:textSize="16sp"
+ android:textAlignment="viewStart"
tools:text="@string/frame_limit_enable" />
</RelativeLayout>