2014-10-22 16:38:44 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/content_view_ll"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:baselineAligned="false">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
2015-07-13 10:55:13 +00:00
|
|
|
android:background="@color/grey50"
|
2014-10-22 16:38:44 +00:00
|
|
|
android:orientation="vertical" >
|
|
|
|
|
2015-04-02 22:06:37 +00:00
|
|
|
<de.timroes.android.listview.EnhancedListView
|
2014-10-22 16:38:44 +00:00
|
|
|
android:id="@+id/list"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-07-13 10:55:13 +00:00
|
|
|
android:background="@color/grey50"
|
|
|
|
android:divider="@color/black12"
|
2014-10-22 16:38:44 +00:00
|
|
|
android:dividerHeight="1dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/selected_conversation"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|