diff options
Diffstat (limited to 'tests/SharedLibrary/lib/res/layout/main.xml')
-rw-r--r-- | tests/SharedLibrary/lib/res/layout/main.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/SharedLibrary/lib/res/layout/main.xml b/tests/SharedLibrary/lib/res/layout/main.xml new file mode 100644 index 0000000..df0204d9 --- /dev/null +++ b/tests/SharedLibrary/lib/res/layout/main.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="vertical"> + + <TextView + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="@string/sample_layout"/> + + <com.google.android.test.shared_library.AddressView xmlns:address="http://schemas.android.com/apk/res-auto" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_weight="1" + android:background="#03a9f4" + address:name="Librarian L" + address:streetNumber="21" + address:streetName="Android Lane" + address:city="AndroidVille" + address:state="OS" + address:zip="12345" + address:country="Mobile"/> + +</LinearLayout> |