bashgid/android/res/layout/search_page_list_header.xml

33 lines
1.1 KiB
XML
Raw Normal View History

2014-11-20 10:57:28 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/bkg1"
android:orientation="vertical"
tools:context="fishrungames.bashgid.SearchFragment" >
<TextView
2015-07-02 08:36:51 +00:00
android:id="@+id/addressTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:gravity="center_horizontal"
android:textSize="@dimen/medium_text_size"
android:textStyle="bold" />
2014-11-20 10:57:28 +00:00
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/enter_search_query"
android:inputType="text" >
<requestFocus />
</EditText>
2015-07-02 08:36:51 +00:00
<TextView
android:id="@+id/hintTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
2014-11-20 10:57:28 +00:00
</LinearLayout>