aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout/activity_new_conversation.xml
blob: 688367616fd54b2201a24479ff6cfe6e520a0735 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<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="#f9f9f9">

    <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:ems="10"
        android:inputType="textEmailAddress"
        android:hint="Search or enter Jabber ID"
        android:background="#ffffff"
        android:layout_marginTop="12dp"
        android:layout_marginBottom="12dp"
        android:layout_marginLeft="8dp"
        android:layout_marginRight="8dp"/>

    <ScrollView
        android:id="@+id/scrollView1"
        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/new_conversation_search"
        android:background="#e5e5e5" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="380dp"
            android:orientation="vertical"
            android:padding="8dp" >

            <TextView
                android:id="@+id/phone_contacts_header"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Phone Contacts"
                style="@style/sectionHeader"/>
            <LinearLayout
                android:id="@+id/phone_contacts"
                android:layout_height="fill_parent"
                android:layout_width="fill_parent"
                android:orientation="vertical">
                
            </LinearLayout>
            <TextView
                android:id="@+id/jabber_contacts_header"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Jabber Contacts"
                style="@style/sectionHeader"/>
            <LinearLayout
                android:id="@+id/jabber_contacts"
                android:layout_height="fill_parent"
                android:layout_width="fill_parent"
                android:orientation="vertical">
                
            </LinearLayout>
            <TextView
                android:id="@+id/new_contact_header"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="create new contact"
                style="@style/sectionHeader"
                android:visibility="gone"/>
            <LinearLayout
                android:id="@+id/create_new_contact"
                android:layout_height="fill_parent"
                android:layout_width="fill_parent"
                android:orientation="vertical"
                android:visibility="gone">
                
            </LinearLayout>
        </LinearLayout>
    </ScrollView>
</RelativeLayout>