2015-06-20 18:46:04 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
2015-07-11 18:49:09 +00:00
|
|
|
<android.support.design.widget.CoordinatorLayout
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:id="@+id/coordinatorLayout"
|
2015-06-20 18:46:04 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
2015-07-11 18:49:09 +00:00
|
|
|
<android.support.v7.widget.RecyclerView
|
2015-06-20 18:46:04 +00:00
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:scrollbarSize="3dp"
|
|
|
|
|
android:scrollbarThumbVertical="@color/md_grey_500"
|
2015-07-11 13:28:14 +00:00
|
|
|
android:scrollbars="vertical" />
|
2015-06-20 18:46:04 +00:00
|
|
|
|
2015-07-11 18:49:09 +00:00
|
|
|
</android.support.design.widget.CoordinatorLayout>
|