mirror of
https://github.com/moparisthebest/Conversations
synced 2024-11-07 09:45:10 -05:00
29 lines
985 B
XML
29 lines
985 B
XML
|
<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"
|
||
|
android:layout_width="336dp"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<ListView
|
||
|
android:id="@+id/list"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:divider="#b5b5b5"
|
||
|
android:dividerHeight="1dp"
|
||
|
android:background="#f9f9f9"
|
||
|
/>
|
||
|
|
||
|
</LinearLayout>
|
||
|
<LinearLayout
|
||
|
android:id="@+id/selected_conversation"
|
||
|
android:layout_width="400dp"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_weight="1"
|
||
|
android:background="#e5e5e5"
|
||
|
android:orientation="vertical">
|
||
|
</LinearLayout>
|
||
|
</android.support.v4.widget.SlidingPaneLayout>
|