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" >
|
|
|
|
|
2015-06-26 09:07:18 +00:00
|
|
|
<TextView
|
2015-07-02 08:36:51 +00:00
|
|
|
android:id="@+id/addressTextView"
|
2015-06-26 09:07:18 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:gravity="center_horizontal"
|
2015-07-02 22:36:06 +00:00
|
|
|
android:textSize="@dimen/medium_text_size"
|
2015-06-26 09:07:18 +00:00
|
|
|
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>
|