56 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|     xmlns:tools="http://schemas.android.com/tools"
 | |
|     android:layout_width="match_parent"
 | |
|     android:layout_height="match_parent"
 | |
|     android:background="#e5e5e5" >
 | |
| 
 | |
|     
 | |
|     <ProgressBar
 | |
|         android:id="@+id/progressBar1"
 | |
|         style="?android:attr/progressBarStyleLarge"
 | |
|         android:layout_width="wrap_content"
 | |
|         android:layout_height="wrap_content"
 | |
|         android:layout_centerInParent="true"
 | |
|         android:visibility="gone"
 | |
|        />
 | |
|     
 | |
|     <EditText
 | |
|         android:id="@+id/new_conversation_search"
 | |
|         android:layout_width="wrap_content"
 | |
|         android:layout_height="wrap_content"
 | |
|         android:layout_alignParentLeft="true"
 | |
|         android:layout_alignParentRight="true"
 | |
|         android:layout_alignParentTop="true"
 | |
|         android:background="#eee"
 | |
|         android:ems="10"
 | |
|         android:hint="Search or enter Jabber ID"
 | |
|         android:inputType="textEmailAddress"
 | |
|         android:paddingBottom="12dp"
 | |
|         android:paddingLeft="8dp"
 | |
|         android:paddingRight="8dp"
 | |
|         android:paddingTop="12dp" />
 | |
|     
 | |
|     <TextView
 | |
|                 android:id="@+id/contacts_header"
 | |
|                 android:layout_width="wrap_content"
 | |
|                 android:layout_height="wrap_content"
 | |
|                 android:text="Contacts"
 | |
|                 style="@style/sectionHeader"
 | |
|                 android:layout_below="@+id/new_conversation_search"
 | |
|                 android:paddingLeft="8dp"
 | |
|                 android:paddingTop="8dp"
 | |
|                 android:paddingRight="8dp"/>
 | |
| 
 | |
|     <ListView
 | |
|         android:id="@+id/contactList"
 | |
|         android:layout_width="fill_parent"
 | |
|         android:layout_height="fill_parent"
 | |
|         android:layout_alignParentBottom="true"
 | |
|         android:layout_alignParentLeft="true"
 | |
|         android:layout_alignParentRight="true"
 | |
|         android:layout_below="@+id/contacts_header"
 | |
|         tools:listitem="@layout/contact"
 | |
|         android:choiceMode="multipleChoice">
 | |
| 
 | |
|     </ListView>
 | |
| </RelativeLayout> | 
