48 lines
No EOL
1.7 KiB
XML
48 lines
No EOL
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/adView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:background="@color/colorAdBackground">
|
|
</FrameLayout>
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/appbar"
|
|
android:layout_alignParentTop="true"
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
|
|
<include layout="@layout/toolbar" />
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/empty_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@id/appbar"
|
|
android:layout_above="@id/adView"
|
|
android:gravity="center"
|
|
android:includeFontPadding="false"
|
|
android:layout_margin="@dimen/activity_horizontal_margin"
|
|
android:visibility="gone"
|
|
android:textStyle="bold"
|
|
android:text="@string/permissions_storage_error_info" />
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_above="@id/adView"
|
|
android:layout_below="@id/appbar"
|
|
android:scrollbars="vertical"
|
|
/>
|
|
</RelativeLayout> |