Files
findMe/res/layout/conversation.xml

25 lines
731 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/white"
android:id="@+id/conversation">
<include layout="@layout/topbar" />
<include layout="@layout/title" />
<ListView
android:id="@+id/messageOverviewList"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@color/white"
android:fadingEdge="none"
android:divider="@color/lightdiv"
android:dividerHeight="1dip">
</ListView>
<include layout="@layout/message_input" />
</LinearLayout>