conversations-classic/res/layout-sw720dp/fragment_conversations_overview.xml

30 lines
1 KiB
XML
Raw Normal View History

2014-01-24 09:50:18 +00:00
<android.support.v4.widget.SlidingPaneLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/slidingpanelayout">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2014-05-26 16:44:26 +00:00
android:layout_width="288dp"
2014-01-24 09:50:18 +00:00
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/primarybackground"
>
2014-01-24 09:50:18 +00:00
<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:divider="@color/divider"
2014-01-24 09:50:18 +00:00
android:dividerHeight="1dp"
android:background="@color/primarybackground"
2014-01-24 09:50:18 +00:00
/>
</LinearLayout>
<LinearLayout
android:id="@+id/selected_conversation"
2014-05-26 16:44:26 +00:00
android:layout_width="fill_parent"
2014-01-24 09:50:18 +00:00
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical">
</LinearLayout>
</android.support.v4.widget.SlidingPaneLayout>