2014-02-13 09:35:08 +00:00
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2014-02-17 01:44:51 +00:00
|
|
|
<org.thoughtcrime.securesms.components.SingleRecipientPanel android:id="@+id/recipients"
|
2014-02-13 09:35:08 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-02-17 01:44:51 +00:00
|
|
|
android:paddingLeft="15dp"
|
|
|
|
android:paddingRight="15dp" />
|
2014-02-13 09:35:08 +00:00
|
|
|
|
|
|
|
<ListView android:id="@android:id/list"
|
2014-02-17 01:44:51 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:fastScrollEnabled="true" />
|
2014-02-13 09:35:08 +00:00
|
|
|
|
|
|
|
<TextView android:id="@android:id/empty"
|
2014-02-17 01:44:51 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center|center_vertical"
|
|
|
|
android:layout_marginTop="15dp"
|
2014-02-19 06:08:24 +00:00
|
|
|
android:text="@string/contact_selection_group_activity__finding_contacts"
|
2014-02-17 01:44:51 +00:00
|
|
|
android:textSize="20sp" />
|
2014-02-13 09:35:08 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|