diff options
author | Romain Guy <romainguy@google.com> | 2011-06-01 14:56:19 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-06-01 14:56:19 -0700 |
commit | cb0975b3c1c73d8bcadaca80e1ee99383750af60 (patch) | |
tree | 34828ffaae61de90897a11c92ae932a8e11502d4 /tests | |
parent | 0523c55e5fd31db06d78f742a79db94f21c2eece (diff) | |
parent | 726aeba80ffc6778a9bc3e0ee957b8d644183505 (diff) | |
download | frameworks_base-cb0975b3c1c73d8bcadaca80e1ee99383750af60.zip frameworks_base-cb0975b3c1c73d8bcadaca80e1ee99383750af60.tar.gz frameworks_base-cb0975b3c1c73d8bcadaca80e1ee99383750af60.tar.bz2 |
Merge "Add support to OpenGLRendere to draw BiDi text. Bug #4350336"
Diffstat (limited to 'tests')
-rw-r--r-- | tests/BiDiTests/AndroidManifest.xml | 2 | ||||
-rw-r--r-- | tests/BiDiTests/res/layout/basic.xml | 15 |
2 files changed, 8 insertions, 9 deletions
diff --git a/tests/BiDiTests/AndroidManifest.xml b/tests/BiDiTests/AndroidManifest.xml index 8a77519..e54194c 100644 --- a/tests/BiDiTests/AndroidManifest.xml +++ b/tests/BiDiTests/AndroidManifest.xml @@ -19,7 +19,7 @@ android:versionCode="1" android:versionName="1.0"> - <application android:label="BiDiTests"> + <application android:label="BiDiTests" android:hardwareAccelerated="true"> <activity android:name=".BiDiTestActivity" android:windowSoftInputMode="stateAlwaysHidden"> diff --git a/tests/BiDiTests/res/layout/basic.xml b/tests/BiDiTests/res/layout/basic.xml index c4807ff..f254e3c 100644 --- a/tests/BiDiTests/res/layout/basic.xml +++ b/tests/BiDiTests/res/layout/basic.xml @@ -27,22 +27,21 @@ <Button android:id="@+id/button" android:layout_height="wrap_content" android:layout_width="wrap_content" - android:onClick="onButtonClick" 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> |