43 lines
1.5 KiB
XML
43 lines
1.5 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent" >
|
||
|
|
||
|
<EditText
|
||
|
android:id="@+id/text"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentLeft="true"
|
||
|
android:layout_alignParentTop="true"
|
||
|
android:layout_toLeftOf="@+id/button"
|
||
|
android:ems="10"
|
||
|
android:inputType="text" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/button"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentRight="true"
|
||
|
android:layout_alignParentTop="true"
|
||
|
android:text="@string/search_button_text" />
|
||
|
<!-- android:onClick="search" -->
|
||
|
|
||
|
<ListView
|
||
|
android:id="@+id/results"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentBottom="true"
|
||
|
android:layout_alignParentRight="true"
|
||
|
android:layout_below="@+id/text" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/empty"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_centerInParent="true"
|
||
|
android:text="@string/search_list_empty"
|
||
|
android:gravity="center" />
|
||
|
|
||
|
</RelativeLayout>
|