2015-01-15 21:35:35 +00: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 05:13:28 +00:00
|
|
|
android:background="@drawable/default_session_background"
|
2015-01-15 21:35:35 +00: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-05 00:40:31 +00:00
|
|
|
tools:listitem="@layout/message_recipient_list_item" />
|
2015-01-15 21:35:35 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|