2014-03-13 21:37:27 +01:00
|
|
|
<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"
|
2014-05-29 18:17:21 +02:00
|
|
|
android:text="@string/share_with_active_conversations"
|
2014-03-13 21:37:27 +01:00
|
|
|
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"
|
2014-05-29 18:17:21 +02:00
|
|
|
android:text="@string/contacts"
|
2014-03-13 21:37:27 +01:00
|
|
|
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>
|