2014-01-24 11:12:19 +01:00
|
|
|
<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"
|
2014-01-28 22:21:08 +01:00
|
|
|
android:background="#e5e5e5" >
|
2014-01-24 11:12:19 +01:00
|
|
|
|
2014-02-07 02:57:36 +01:00
|
|
|
|
|
|
|
<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"
|
|
|
|
/>
|
|
|
|
|
2014-01-24 11:12:19 +01:00
|
|
|
<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"
|
2014-01-28 22:21:08 +01:00
|
|
|
android:background="#eee"
|
2014-01-24 11:12:19 +01:00
|
|
|
android:ems="10"
|
|
|
|
android:hint="Search or enter Jabber ID"
|
2014-01-28 22:21:08 +01:00
|
|
|
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"/>
|
2014-01-24 11:12:19 +01:00
|
|
|
|
2014-01-28 22:21:08 +01:00
|
|
|
<ListView
|
|
|
|
android:id="@+id/contactList"
|
2014-01-24 11:12:19 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentRight="true"
|
2014-01-28 22:21:08 +01:00
|
|
|
android:layout_below="@+id/contacts_header"
|
2014-03-15 04:59:18 +01:00
|
|
|
tools:listitem="@layout/contact"
|
|
|
|
android:choiceMode="multipleChoice">
|
2014-01-24 11:12:19 +01:00
|
|
|
|
2014-01-28 22:21:08 +01:00
|
|
|
</ListView>
|
2014-01-24 11:12:19 +01:00
|
|
|
</RelativeLayout>
|