2012-07-19 21:22:03 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2016-10-20 03:08:00 +00:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="match_parent">
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@android:id/list"
|
2016-10-20 03:08:00 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-09-15 22:28:27 +00:00
|
|
|
android:scrollbars="vertical"
|
|
|
|
android:cacheColorHint="?conversation_background" />
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2016-10-20 03:08:00 +00:00
|
|
|
|
|
|
|
<!--suppress AndroidLintUnusedAttribute-->
|
|
|
|
<View android:id="@+id/compose_divider"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="2dp"
|
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:background="@drawable/compose_divider_background"
|
|
|
|
android:alpha="0"
|
|
|
|
android:visibility="invisible" />
|
|
|
|
|
|
|
|
</FrameLayout>
|