summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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>