summaryrefslogtreecommitdiff
path: root/Source/Android/app/src
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-01-24 08:36:43 -0500
committerCharles Lombardo <clombardo169@gmail.com>2023-01-24 08:41:20 -0500
commit7741046e6fcab2ef4efc60fde86300c9d19dede5 (patch)
treefc739a2b937f9ec34d5949522a516b545b7acbed /Source/Android/app/src
parent8d5967ad87c4c634e25a1ee834301c97793a9984 (diff)
Android: Fix rtl layout for about dialog
Diffstat (limited to 'Source/Android/app/src')
-rw-r--r--Source/Android/app/src/main/res/layout-w600dp/dialog_about.xml19
1 files changed, 12 insertions, 7 deletions
diff --git a/Source/Android/app/src/main/res/layout-w600dp/dialog_about.xml b/Source/Android/app/src/main/res/layout-w600dp/dialog_about.xml
index 03006aa7cc..fe33e4e6ca 100644
--- a/Source/Android/app/src/main/res/layout-w600dp/dialog_about.xml
+++ b/Source/Android/app/src/main/res/layout-w600dp/dialog_about.xml
@@ -56,48 +56,53 @@
<com.google.android.material.textview.MaterialTextView
android:id="@+id/name_text"
- android:layout_width="wrap_content"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/about_dolphin"
android:textAppearance="@style/TextAppearance.AppCompat.Display3"
- android:textColor="?attr/colorOnSurface" />
+ android:textColor="?attr/colorOnSurface"
+ android:textAlignment="viewStart" />
<com.google.android.material.textview.MaterialTextView
android:id="@+id/version_text"
- android:layout_width="wrap_content"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/spacing_large"
android:textAppearance="@style/TextAppearance.AppCompat.Large"
android:textColor="?attr/colorOnSurface"
android:textIsSelectable="true"
+ android:textAlignment="viewStart"
tools:text="5.0-XXXXX" />
<com.google.android.material.textview.MaterialTextView
android:id="@+id/branch_text"
- android:layout_width="wrap_content"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/spacing_large"
android:textColor="?attr/colorOnSurface"
android:textIsSelectable="true"
+ android:textAlignment="viewStart"
tools:text="Branch:\nmaster" />
<com.google.android.material.textview.MaterialTextView
android:id="@+id/revision_text"
- android:layout_width="wrap_content"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/spacing_large"
android:textColor="?attr/colorOnSurface"
android:textIsSelectable="true"
+ android:textAlignment="viewStart"
tools:text="Revision:\nf4f94396e94dad9cd4d7d7fb6defa096966a4ab8" />
<com.google.android.material.textview.MaterialTextView
android:id="@+id/about_dolphin_text"
- android:layout_width="wrap_content"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/spacing_large"
android:focusable="false"
android:text="@string/about_dolphin_description"
- android:textColor="?attr/colorOnSurface" />
+ android:textColor="?attr/colorOnSurface"
+ android:textAlignment="viewStart" />
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"