2014-10-23 16:58:47 +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"
|
2014-10-24 04:31:52 +00:00
|
|
|
android:layout_margin="0dp"
|
2014-10-23 16:58:47 +00:00
|
|
|
android:background="@drawable/background"
|
|
|
|
android:orientation="vertical"
|
|
|
|
tools:context="fishrungames.bashgid.MainPageFragment" >
|
|
|
|
|
2014-11-05 05:00:15 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp" >
|
2014-10-24 04:31:52 +00:00
|
|
|
|
2014-11-05 05:00:15 +00:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/editText"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:ems="10" >
|
|
|
|
|
|
|
|
<requestFocus />
|
|
|
|
</EditText>
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/searchButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
|
|
|
android:background="@drawable/transparent"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:src="@drawable/abc_ic_search" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ListView
|
|
|
|
android:id="@+id/listView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:divider="@drawable/transparent"
|
|
|
|
android:dividerHeight="18dp" >
|
|
|
|
|
|
|
|
</ListView>
|
2014-10-23 16:58:47 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|