2014-01-19 02:17:08 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:padding="20dp">
|
|
|
|
|
2014-02-07 02:06:23 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
2014-01-19 02:17:08 +00:00
|
|
|
android:layout_height="wrap_content"
|
2014-02-07 02:06:23 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:layout_marginBottom="20dp" >
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/avatar"
|
|
|
|
android:layout_width="70dp"
|
|
|
|
android:layout_height="70dp"
|
|
|
|
android:src="@drawable/icon"/>
|
2014-01-19 02:17:08 +00:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/group_name"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-02-07 02:06:23 +00:00
|
|
|
android:padding="10dp"
|
|
|
|
android:hint="Group name"
|
|
|
|
android:layout_gravity="center_vertical" />
|
|
|
|
</LinearLayout>
|
2014-01-19 02:17:08 +00:00
|
|
|
|
|
|
|
|
2014-02-07 02:06:23 +00:00
|
|
|
<org.thoughtcrime.securesms.components.PushRecipientsPanel
|
|
|
|
android:id="@+id/recipients"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2014-01-19 02:17:08 +00:00
|
|
|
|
|
|
|
<ListView
|
|
|
|
android:id="@+id/selected_contacts_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
</LinearLayout>
|