blob: 8550a5e206d5061a13d4ab830e3b2a1be83ad0d1 [file] [log] [blame]
Chet Haasefaebd8f2012-05-18 14:17:57 -07001<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:orientation="vertical"
4 android:layout_width="fill_parent"
5 android:layout_height="fill_parent"
6 android:background="#7f7f7f"
7 android:id="@+id/container">
8 <LinearLayout android:orientation="horizontal"
9 android:layout_width="wrap_content"
10 android:layout_height="wrap_content"
11 android:layout_gravity="top|right"
12 android:id="@+id/searchContainer">
13 <TextView
14 android:layout_width="wrap_content"
15 android:layout_height="wrap_content"
16 android:text="@string/searchText"
17 android:id="@+id/searchText"/>
18 <Button
19 android:layout_width="wrap_content"
20 android:layout_height="wrap_content"
21 android:text="@string/searchButton"
22 android:onClick="sendMessage"
23 android:id="@+id/searchButton"/>
24 </LinearLayout>
25 <TextView
26 android:layout_width="wrap_content"
27 android:layout_height="wrap_content"
28 android:layout_gravity="center"
29 android:text="@string/resultsTitle"
30 android:id="@+id/resultsText"/>
31 <LinearLayout android:layout_width="match_parent"
32 android:layout_height="0dip"
33 android:layout_weight="1"
34 android:orientation="vertical"
35 android:id="@+id/resultsList">
36 <TextView
37 android:layout_width="wrap_content"
38 android:layout_height="wrap_content"
39 android:text="@string/placeholder"/>
40 <TextView
41 android:layout_width="wrap_content"
42 android:layout_height="wrap_content"
43 android:text="@string/placeholder"/>
44 <TextView
45 android:layout_width="wrap_content"
46 android:layout_height="wrap_content"
47 android:text="@string/placeholder"/>
48 <TextView
49 android:layout_width="wrap_content"
50 android:layout_height="wrap_content"
51 android:text="@string/placeholder"/>
52 <TextView
53 android:layout_width="wrap_content"
54 android:layout_height="wrap_content"
55 android:text="@string/placeholder"/>
56 <TextView
57 android:layout_width="wrap_content"
58 android:layout_height="wrap_content"
59 android:text="@string/placeholder"/>
60 <TextView
61 android:layout_width="wrap_content"
62 android:layout_height="wrap_content"
63 android:text="@string/placeholder"/>
64
65 </LinearLayout>
66</LinearLayout>