diff options
author | Daniel Gultsch <daniel@gultsch.de> | 2014-03-13 21:37:27 +0100 |
---|---|---|
committer | Daniel Gultsch <daniel@gultsch.de> | 2014-03-13 21:37:27 +0100 |
commit | 9c811f8fb20b056ea12803e93e5ea20dc052bdcd (patch) | |
tree | 7c4be8327ca3722f41d7784c126081a92585c26c /res/layout | |
parent | 507cfba6ad481b078528ead056088e6aa6c4a3fc (diff) |
sharing text
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/share_with.xml | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/res/layout/share_with.xml b/res/layout/share_with.xml new file mode 100644 index 00000000..ae73a688 --- /dev/null +++ b/res/layout/share_with.xml @@ -0,0 +1,50 @@ +<ScrollView 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"> + +<LinearLayout + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:orientation="vertical" > + + <TextView + android:id="@+id/conversations_header" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="Active Conversations" + style="@style/sectionHeader" + android:paddingLeft="8dp" + android:paddingTop="8dp" + android:paddingRight="8dp"/> + + + <LinearLayout + android:id="@+id/conversations" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:orientation="vertical" + android:divider="?android:dividerHorizontal" + android:showDividers="middle" > + + </LinearLayout> + <TextView + android:id="@+id/contacts_header" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="Contacts" + style="@style/sectionHeader" + android:paddingLeft="8dp" + android:paddingTop="8dp" + android:paddingRight="8dp"/> + <LinearLayout + android:id="@+id/contacts" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:orientation="vertical" + android:divider="?android:dividerHorizontal" + android:showDividers="middle" > + + </LinearLayout> +</LinearLayout> +</ScrollView>
\ No newline at end of file |