2012-07-19 21:22:03 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-07-20 02:23:49 +00:00
|
|
|
android:layout_width="fill_parent"
|
2012-07-19 21:22:03 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2015-09-15 22:28:27 +00: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 21:22:03 +00:00
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
</LinearLayout>
|