simpledialogfragments/src/main/res/layout/simpledialogfragment_grid.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="16dp"
android:paddingBottom="8dp">
<eltos.simpledialogfragment.list.ClearableEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/filter"
android:hint="@string/abc_search_hint"
android:inputType="textCapSentences|text"
android:lines="1"
android:maxLines="1" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/filter">
<GridView
android:id="@+id/gridView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:stretchMode="columnWidth"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/emptyView"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>
</RelativeLayout>