summaryrefslogtreecommitdiffstats
path: root/tests/BiDiTests
diff options
context:
space:
mode:
authorFabrice Di Meglio <fdimeglio@google.com>2011-08-18 13:10:02 -0700
committerFabrice Di Meglio <fdimeglio@google.com>2011-08-18 13:12:43 -0700
commitaf3e6d64d1b388d9f746e170f7934e292f6703a7 (patch)
treef994b61bbeb12238c701cb6ff13cdc87a4bbf1ca /tests/BiDiTests
parent4b60c30838fbd635964f1e79c057de5048dcc66f (diff)
downloadframeworks_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')
-rw-r--r--tests/BiDiTests/res/layout/basic.xml14
-rw-r--r--tests/BiDiTests/res/values/strings.xml1
2 files changed, 14 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"
diff --git a/tests/BiDiTests/res/values/strings.xml b/tests/BiDiTests/res/values/strings.xml
index fde0ecf..b0809da 100644
--- a/tests/BiDiTests/res/values/strings.xml
+++ b/tests/BiDiTests/res/values/strings.xml
@@ -27,6 +27,7 @@
<string name="textview_text">This is a text for a TextView</string>
<string name="textview_ltr_text">This is a text for a LTR TextView</string>
<string name="textview_rtl_text">This is a text for a RTL TextView</string>
+ <string name="textview_default_text">This is a text for a default TextView</string>
<string name="edittext_text">mmmmmmmmmmmmmmmmmmmmmmmm</string>
<string name="normal_text">Normal String</string>
<string name="normal_long_text">mmmmmmmmmmmmmmmmmmmmmmmm</string>