summaryrefslogtreecommitdiffstats
path: root/tests/BiDiTests/res/layout/basic.xml
diff options
context:
space:
mode:
authorFabrice Di Meglio <fdimeglio@google.com>2011-06-10 14:19:18 -0700
committerFabrice Di Meglio <fdimeglio@google.com>2011-06-10 14:30:32 -0700
commit26e432d25f2ba199ae8b762fc68da8463389dd9b (patch)
tree3780992b8f91a23087f85fcb1eef069fe9b02927 /tests/BiDiTests/res/layout/basic.xml
parent6b6091a14032c02ce2ba5600a651166ac0102290 (diff)
downloadframeworks_base-26e432d25f2ba199ae8b762fc68da8463389dd9b.zip
frameworks_base-26e432d25f2ba199ae8b762fc68da8463389dd9b.tar.gz
frameworks_base-26e432d25f2ba199ae8b762fc68da8463389dd9b.tar.bz2
Make View respect LAYOUT_DIRECTION_LOCALE
- update also unit tests for taking care of the locale direction - code formatting on the layout test files Change-Id: I4037eac3c572de9abb0178f36ca03803cc2c1522
Diffstat (limited to 'tests/BiDiTests/res/layout/basic.xml')
-rw-r--r--tests/BiDiTests/res/layout/basic.xml42
1 files changed, 21 insertions, 21 deletions
diff --git a/tests/BiDiTests/res/layout/basic.xml b/tests/BiDiTests/res/layout/basic.xml
index f254e3c..d5f5ba7 100644
--- a/tests/BiDiTests/res/layout/basic.xml
+++ b/tests/BiDiTests/res/layout/basic.xml
@@ -15,34 +15,34 @@
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content">
- <Button android:id="@+id/button"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- android:text="@string/button_text"
- android:textSize="32dip"
- />
+ <Button android:id="@+id/button"
+ android:layout_height="wrap_content"
+ android:layout_width="wrap_content"
+ android:text="@string/button_text"
+ android:textSize="32dip"
+ />
<TextView android:id="@+id/textview"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- android:textSize="32dip"
- android:text="@string/textview_text"
- />
+ android:layout_height="wrap_content"
+ android:layout_width="wrap_content"
+ android:textSize="32dip"
+ android:text="@string/textview_text"
+ />
<EditText android:id="@+id/edittext"
- android:layout_height="wrap_content"
- android:layout_width="match_parent"
- android:textSize="32dip"
- />
+ android:layout_height="wrap_content"
+ android:layout_width="match_parent"
+ android:textSize="32dip"
+ />
</LinearLayout>