diff options
author | Fabrice Di Meglio <fdimeglio@google.com> | 2011-08-18 13:10:02 -0700 |
---|---|---|
committer | Fabrice Di Meglio <fdimeglio@google.com> | 2011-08-18 13:12:43 -0700 |
commit | af3e6d64d1b388d9f746e170f7934e292f6703a7 (patch) | |
tree | f994b61bbeb12238c701cb6ff13cdc87a4bbf1ca /tests/BiDiTests/res/layout | |
parent | 4b60c30838fbd635964f1e79c057de5048dcc66f (diff) | |
download | frameworks_base-af3e6d64d1b388d9f746e170f7934e292f6703a7.zip frameworks_base-af3e6d64d1b388d9f746e170f7934e292f6703a7.tar.gz frameworks_base-af3e6d64d1b388d9f746e170f7934e292f6703a7.tar.bz2 |
Update BiDiTest app
- add a default TextView
Change-Id: I0ce92503204e370d9c928440cdd4876701c6c4cb
Diffstat (limited to 'tests/BiDiTests/res/layout')
-rw-r--r-- | tests/BiDiTests/res/layout/basic.xml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/tests/BiDiTests/res/layout/basic.xml b/tests/BiDiTests/res/layout/basic.xml index e8f67a6..8a27213 100644 --- a/tests/BiDiTests/res/layout/basic.xml +++ b/tests/BiDiTests/res/layout/basic.xml @@ -34,6 +34,19 @@ android:textSize="32dip" /> + <TextView android:id="@+id/textview_default" + android:layout_height="wrap_content" + android:layout_width="wrap_content" + android:textSize="32dip" + android:text="@string/textview_default_text" + /> + + <EditText android:id="@+id/edittext_default" + android:layout_height="wrap_content" + android:layout_width="match_parent" + android:textSize="32dip" + /> + <TextView android:id="@+id/textview_ltr" android:layout_height="wrap_content" android:layout_width="wrap_content" @@ -46,7 +59,6 @@ android:layout_width="match_parent" android:textSize="32dip" android:textDirection="ltr" - android:text="@string/url" /> <TextView android:id="@+id/textview_rtl" |