55 lines
1.9 KiB
XML
55 lines
1.9 KiB
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
android:paddingTop="@dimen/activity_vertical_margin"
|
|
tools:context=".TextActivity" >
|
|
|
|
<ListView
|
|
android:id="@+id/tuplelistview"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/searchBoxContainer"
|
|
android:layout_centerHorizontal="true"
|
|
android:choiceMode="multipleChoice"
|
|
android:clickable="true" >
|
|
|
|
</ListView>
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/searchBoxContainer"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignLeft="@+id/databaseListview"
|
|
android:layout_alignParentTop="true" >
|
|
|
|
<EditText
|
|
android:id="@+id/searchBox"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_toLeftOf="@+id/search"
|
|
android:focusable="true"
|
|
android:enabled="true"
|
|
android:hint="@string/search"
|
|
>
|
|
<requestFocus />
|
|
</EditText>
|
|
|
|
<ImageButton
|
|
android:id="@+id/search"
|
|
style="?android:attr/buttonStyleSmall"
|
|
android:layout_width="50dp"
|
|
android:layout_height="30dp"
|
|
android:layout_alignBottom="@id/searchBox"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentTop="true"
|
|
android:src="@drawable/search" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</RelativeLayout>
|