diff options
author | Daniel Gultsch <daniel.gultsch@rwth-aachen.de> | 2014-01-24 11:12:19 +0100 |
---|---|---|
committer | Daniel Gultsch <daniel.gultsch@rwth-aachen.de> | 2014-01-24 11:12:19 +0100 |
commit | b273390e26e1d28f6df01fb421d8554cb7588a58 (patch) | |
tree | 0e9e0929f2cb23ba2f04af4ce98c6bbbe0841988 /res/layout | |
parent | 70590c2a2228d84e588c7db43c1be8581ec1cff5 (diff) |
reverted file
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/activity_new_conversation.xml | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/res/layout/activity_new_conversation.xml b/res/layout/activity_new_conversation.xml new file mode 100644 index 00000000..68836761 --- /dev/null +++ b/res/layout/activity_new_conversation.xml @@ -0,0 +1,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>
\ No newline at end of file |