2014-01-19 02:17:08 +00:00
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-03-18 06:25:09 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2014-01-19 02:17:08 +00:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
2015-06-01 23:51:14 +00: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-21 07:26:58 +00:00
|
|
|
|
|
|
|
<se.emilsjolander.stickylistheaders.StickyListHeadersListView
|
|
|
|
android:id="@android:id/list"
|
2014-04-01 23:40:16 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
2014-01-19 02:17:08 +00:00
|
|
|
|
|
|
|
<TextView android:id="@android:id/empty"
|
2014-04-01 23:40:16 +00: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-19 02:17:08 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|