diff options
Diffstat (limited to 'testapps/basicProjectWithJava/res')
-rw-r--r-- | testapps/basicProjectWithJava/res/layout/main.xml | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/testapps/basicProjectWithJava/res/layout/main.xml b/testapps/basicProjectWithJava/res/layout/main.xml index c7a95da..670dd32 100644 --- a/testapps/basicProjectWithJava/res/layout/main.xml +++ b/testapps/basicProjectWithJava/res/layout/main.xml @@ -4,10 +4,15 @@ android:layout_width="fill_parent" android:layout_height="fill_parent" > -<TextView - android:layout_width="fill_parent" - android:layout_height="wrap_content" +<TextView + android:layout_width="fill_parent" + android:layout_height="wrap_content" android:text="basicProjectWithJava" android:id="@+id/text" /> +<com.android.tests.basicProjectWithJava.MyTextView + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:id="@+id/text" + /> </LinearLayout> |