2014-01-18 18:17:08 -08:00
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-03-17 23:25:09 -07:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2014-01-18 18:17:08 -08:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
2015-06-01 16:51:14 -07:00
|
|
|
<EditText android:id="@+id/filter"
|
|
|
|
android:inputType="textPersonName"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="45sp"
|
|
|
|
android:hint="@string/recipients_panel__to"
|
|
|
|
android:textColor="?conversation_editor_text_color" />
|
2015-01-20 21:26:58 -10:00
|
|
|
|
|
|
|
<se.emilsjolander.stickylistheaders.StickyListHeadersListView
|
|
|
|
android:id="@android:id/list"
|
2014-04-01 16:40:16 -07:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
2014-01-18 18:17:08 -08:00
|
|
|
|
|
|
|
<TextView android:id="@android:id/empty"
|
2014-04-01 16:40:16 -07:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center|center_vertical"
|
|
|
|
android:layout_marginTop="15dp"
|
|
|
|
android:text="@string/contact_selection_group_activity__finding_contacts"
|
|
|
|
android:textSize="20sp" />
|
2014-01-18 18:17:08 -08:00
|
|
|
|
|
|
|
</LinearLayout>
|