You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			101 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			XML
		
	
			
		
		
	
	
			101 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			XML
		
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| 
 | |
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|               xmlns:app="http://schemas.android.com/apk/res-auto"
 | |
|               android:layout_width="match_parent"
 | |
|               android:layout_height="match_parent"
 | |
|               android:orientation="vertical">
 | |
| 
 | |
|     <RelativeLayout
 | |
|         android:layout_width="fill_parent"
 | |
|         android:layout_height="wrap_content"
 | |
|         android:layout_marginBottom="20dp"
 | |
|         android:gravity="center_vertical">
 | |
| 
 | |
|         <LinearLayout android:id="@+id/group_details_layout"
 | |
|             android:layout_width="fill_parent"
 | |
|             android:layout_height="106dp"
 | |
|             android:paddingLeft="14dp"
 | |
|             android:paddingRight="18dp"
 | |
|             android:paddingTop="14dp"
 | |
|             android:orientation="horizontal"
 | |
|             android:gravity="center_vertical">
 | |
| 
 | |
|             <org.thoughtcrime.securesms.components.ImageDivet android:id="@+id/avatar"
 | |
|                 android:layout_width="70dp"
 | |
|                 android:layout_height="70dp"
 | |
|                 position="bottom_right"
 | |
|                 app:riv_oval="true"
 | |
|                 android:layout_marginRight="10dp"
 | |
|                 android:src="@drawable/ic_group_photo"
 | |
|                 android:contentDescription="@string/GroupCreateActivity_avatar_content_description" />
 | |
| 
 | |
|             <EditText android:id="@+id/group_name"
 | |
|                 android:layout_width="match_parent"
 | |
|                 android:layout_height="wrap_content"
 | |
|                 android:layout_gravity="center_vertical"
 | |
|                 android:padding="10dp"
 | |
|                 android:lines="1"
 | |
|                 android:inputType="textAutoCorrect"
 | |
|                 android:hint="@string/GroupCreateActivity_group_name_hint" />
 | |
|             </LinearLayout>
 | |
| 
 | |
|         <LinearLayout android:id="@+id/creating_group_layout"
 | |
|             android:layout_width="fill_parent"
 | |
|             android:layout_height="106dp"
 | |
|             android:paddingLeft="18dp"
 | |
|             android:paddingRight="18dp"
 | |
|             android:paddingTop="18dp"
 | |
|             android:orientation="horizontal"
 | |
|             android:gravity="center_vertical"
 | |
|             android:visibility="gone">
 | |
| 
 | |
|             <ProgressBar android:id="@+id/creating_progress_bar"
 | |
|                 android:layout_width="wrap_content"
 | |
|                 android:layout_height="wrap_content"
 | |
|                 android:layout_marginRight="10dp"
 | |
|                 style="@android:style/Widget.ProgressBar"
 | |
|                 android:indeterminate="true" />
 | |
| 
 | |
|             <TextView android:id="@+id/creating_group_text"
 | |
|                 android:layout_width="match_parent"
 | |
|                 android:layout_height="wrap_content"
 | |
|                 android:layout_gravity="center_vertical"
 | |
|                 android:padding="10dp"
 | |
|                 android:textAppearance="?android:attr/textAppearanceMedium" />
 | |
|         </LinearLayout>
 | |
| 
 | |
|         <RelativeLayout android:id="@+id/push_disabled"
 | |
|             android:layout_width="fill_parent"
 | |
|             android:layout_height="wrap_content"
 | |
|             android:minHeight="106dp"
 | |
|             android:padding="15dp"
 | |
|             android:gravity="center_vertical|center_horizontal"
 | |
|             android:background="#aa000000"
 | |
|             android:visibility="gone">
 | |
| 
 | |
|             <TextView android:id="@+id/push_disabled_reason"
 | |
|                 android:layout_width="fill_parent"
 | |
|                 android:layout_height="wrap_content"
 | |
|                 android:layout_centerInParent="true"
 | |
|                 android:padding="8dp"
 | |
|                 android:background="#dd222222"
 | |
|                 android:textColor="#ffeeeeee"
 | |
|                 android:fontFamily="sans-serif-light"
 | |
|                 android:textSize="16sp"
 | |
|                 android:text="@string/GroupCreateActivity_contacts_dont_support_push" />
 | |
| 
 | |
|             </RelativeLayout>
 | |
|     </RelativeLayout>
 | |
| 
 | |
|     <org.thoughtcrime.securesms.components.PushRecipientsPanel android:id="@+id/recipients"
 | |
|         android:layout_width="fill_parent"
 | |
|         android:layout_height="wrap_content"
 | |
|         android:paddingLeft="15dp"
 | |
|         android:paddingRight="15dp" />
 | |
| 
 | |
|     <ListView android:id="@+id/selected_contacts_list"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="wrap_content" />
 | |
| 
 | |
| </LinearLayout> |