am c14d1134: Merge "Fix bug #7356946 The Data Usage app details contain titles that are not RTL align. ( Hebrew Only )" into jb-mr1-dev

* commit 'c14d1134a06324ece490f7ace3337c692b2ea542':
  Fix bug #7356946 The Data Usage app details contain titles that are not RTL align. ( Hebrew Only )
This commit is contained in:
Fabrice Di Meglio
2012-10-18 10:14:35 -07:00
committed by Android Git Automerger
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>