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
This commit is contained in:
Fabrice Di Meglio
2012-10-17 17:50:05 -07:00
parent 8e3f8d3af5
commit 9051e3cd78
2 changed files with 14 additions and 6 deletions

View File

@@ -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" />

View File

@@ -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>