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

Commit c14d1134 authored by Fabrice Di Meglio's avatar Fabrice Di Meglio Committed by Android (Google) Code Review
Browse files

Merge "Fix bug #7356946 The Data Usage app details contain titles that are not...

Merge "Fix bug #7356946 The Data Usage app details contain titles that are not RTL align. ( Hebrew Only )" into jb-mr1-dev
parents f6d4b290 9051e3cd
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>