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"
|
2014-02-13 01:17:33 +00:00
|
|
|
android:layout_height="match_parent">
|
2014-01-19 02:17:08 +00:00
|
|
|
|
2014-02-13 01:17:33 +00:00
|
|
|
<RelativeLayout
|
2014-02-07 02:06:23 +00:00
|
|
|
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:gravity="center_vertical"
|
2014-02-13 01:17:33 +00:00
|
|
|
android:layout_marginBottom="20dp">
|
2014-01-19 02:17:08 +00:00
|
|
|
|
2014-02-13 01:17:33 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="106dp"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:paddingLeft="18dp"
|
|
|
|
android:paddingRight="18dp"
|
|
|
|
android:paddingTop="18dp">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/avatar"
|
|
|
|
android:layout_width="70dp"
|
|
|
|
android:layout_height="70dp"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:src="@drawable/icon"/>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/group_name"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="10dp"
|
|
|
|
android:hint="Group name"
|
|
|
|
android:layout_gravity="center_vertical" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/push_disabled"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="106dp"
|
|
|
|
android:background="#dd555555"
|
|
|
|
android:gravity="center_vertical|center_horizontal"
|
|
|
|
android:padding="15dp"
|
|
|
|
android:visibility="gone">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:background="#ff444444"
|
|
|
|
android:textColor="#ffeeeeee"
|
|
|
|
android:fontFamily="sans-serif-light"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:textSize="16dp"
|
2014-02-13 02:12:58 +00:00
|
|
|
android:text="@string/GroupCreateActivity_contacts_dont_support_push" />
|
2014-02-13 01:17:33 +00:00
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
</RelativeLayout>
|
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>
|