24 lines
787 B
XML
24 lines
787 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:background="?attr/color_background_primary"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<include
|
||
|
android:id="@+id/toolbar"
|
||
|
layout="@layout/toolbar"/>
|
||
|
|
||
|
<android.support.v7.widget.RecyclerView
|
||
|
android:id="@+id/media"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="horizontal"
|
||
|
android:clipToPadding="false"
|
||
|
android:padding="2dp"
|
||
|
android:scrollbars="vertical"/>
|
||
|
|
||
|
</LinearLayout>
|
||
|
</layout>
|