36 lines
1.2 KiB
XML
36 lines
1.2 KiB
XML
<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
|
|
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" />
|
|
|
|
<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>
|
|
|
|
<TextView
|
|
android:id="@+id/hintTextView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout> |