2014-01-24 05:12:19 -05: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 16:21:08 -05:00
|
|
|
android:background="#e5e5e5" >
|
2014-01-24 05:12:19 -05:00
|
|
|
|
2014-02-06 20:57:36 -05: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 05:12:19 -05: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 16:21:08 -05:00
|
|
|
android:background="#eee"
|
2014-01-24 05:12:19 -05:00
|
|
|
android:ems="10"
|
2014-05-23 18:17:42 -04:00
|
|
|
android:hint="@string/search_jabber_id"
|
2014-01-28 16:21:08 -05: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 05:12:19 -05:00
|
|
|
|
2014-01-28 16:21:08 -05:00
|
|
|
<ListView
|
|
|
|
android:id="@+id/contactList"
|
2014-01-24 05:12:19 -05: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 16:21:08 -05:00
|
|
|
android:layout_below="@+id/contacts_header"
|
2014-03-14 23:59:18 -04:00
|
|
|
tools:listitem="@layout/contact"
|
|
|
|
android:choiceMode="multipleChoice">
|
2014-01-24 05:12:19 -05:00
|
|
|
|
2014-01-28 16:21:08 -05:00
|
|
|
</ListView>
|
2014-01-24 05:12:19 -05:00
|
|
|
</RelativeLayout>
|