diff options
Diffstat (limited to 'tests/TransitionTests/res/layout/results_screen.xml')
-rw-r--r-- | tests/TransitionTests/res/layout/results_screen.xml | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/tests/TransitionTests/res/layout/results_screen.xml b/tests/TransitionTests/res/layout/results_screen.xml new file mode 100644 index 0000000..8550a5e --- /dev/null +++ b/tests/TransitionTests/res/layout/results_screen.xml @@ -0,0 +1,66 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="vertical" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:background="#7f7f7f" + android:id="@+id/container"> + <LinearLayout android:orientation="horizontal" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="top|right" + android:id="@+id/searchContainer"> + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/searchText" + android:id="@+id/searchText"/> + <Button + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/searchButton" + android:onClick="sendMessage" + android:id="@+id/searchButton"/> + </LinearLayout> + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center" + android:text="@string/resultsTitle" + android:id="@+id/resultsText"/> + <LinearLayout android:layout_width="match_parent" + android:layout_height="0dip" + android:layout_weight="1" + android:orientation="vertical" + android:id="@+id/resultsList"> + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/placeholder"/> + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/placeholder"/> + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/placeholder"/> + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/placeholder"/> + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/placeholder"/> + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/placeholder"/> + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/placeholder"/> + + </LinearLayout> +</LinearLayout>
\ No newline at end of file |