Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9051e3cd authored by Fabrice Di Meglio's avatar Fabrice Di Meglio
Browse files

Fix bug #7356946 The Data Usage app details contain titles that are not RTL align. ( Hebrew Only )

- use "viewStart" as text alignment

Change-Id: Iaff5eec130fcb57e8352f16f87faaf3bd980e994
parent 8e3f8d3a
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -19,4 +19,5 @@
    android:layout_height="wrap_content"
    android:singleLine="true"
    android:ellipsize="marquee"
    android:textAppearance="?android:attr/textAppearanceMedium" />
    android:textAppearance="?android:attr/textAppearanceMedium"
    android:textAlignment="viewStart" />
+12 −5
Original line number Diff line number Diff line
@@ -48,29 +48,36 @@
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="8dip"
                android:orientation="vertical" />
                android:orientation="vertical"
                android:textAlignment="viewStart" />

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="8dip"
                android:textColor="#d88d3a"
                android:text="@string/data_usage_label_foreground" />
                android:text="@string/data_usage_label_foreground"
                android:textAlignment="viewStart" />

            <TextView
                android:id="@+id/app_foreground"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:textColor="#d88d3a" />
                android:textColor="#d88d3a"
                android:textAlignment="viewStart" />

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="8dip"
                android:text="@string/data_usage_label_background" />
                android:text="@string/data_usage_label_background"
                android:textAlignment="viewStart" />

            <TextView
                android:id="@+id/app_background"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" />
                android:layout_height="wrap_content"
                android:textAlignment="viewStart" />

        </LinearLayout>