2015-01-15 13:35:35 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/container"
|
2020-01-15 16:13:28 +11:00
|
|
|
android:background="@drawable/default_session_background"
|
2015-01-15 13:35:35 -08:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<ListView android:id="@+id/recipients_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-03-04 16:40:31 -08:00
|
|
|
tools:listitem="@layout/message_recipient_list_item" />
|
2015-01-15 13:35:35 -08:00
|
|
|
|
|
|
|
</LinearLayout>
|