2013-01-24 07:04:06 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-01-25 06:19:09 -05:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2013-01-24 07:04:06 -05:00
|
|
|
android:id="@+id/container"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:baselineAligned="false"
|
|
|
|
android:orientation="horizontal" >
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/message_list_container"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2013-01-25 06:19:09 -05:00
|
|
|
android:layout_weight="5" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/message_list_divider"
|
|
|
|
android:layout_width="1px"
|
|
|
|
android:layout_height="fill_parent"
|
2013-01-31 21:18:04 -05:00
|
|
|
android:background="?attr/messageListDividerColor"
|
2013-01-25 06:19:09 -05:00
|
|
|
tools:ignore="PxUsage" />
|
2013-01-24 07:04:06 -05:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/message_view_container"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2013-01-25 06:19:09 -05:00
|
|
|
android:layout_weight="3" />
|
2013-01-24 07:04:06 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|