2012-07-19 14:22:03 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-07-19 19:23:49 -07:00
|
|
|
android:layout_width="fill_parent"
|
2012-07-19 14:22:03 -07:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2015-09-15 15:28:27 -07:00
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1.0"
|
|
|
|
android:scrollbars="vertical"
|
|
|
|
android:cacheColorHint="?conversation_background" />
|
2012-07-19 14:22:03 -07:00
|
|
|
|
2015-09-15 15:28:27 -07:00
|
|
|
</LinearLayout>
|