bashgid/android/res/layout/search_page_list_header.xml

36 lines
1.2 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"
android:paddingLeft="20dp"
android:paddingRight="20dp"
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="18sp"
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:ems="10"
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>