56 lines
No EOL
2.2 KiB
XML
56 lines
No EOL
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.design.widget.CoordinatorLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true"
|
|
tools:context=".ui.activity.FilePickerActivity">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:id="@+id/appbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
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_margin="@dimen/activity_horizontal_margin"
|
|
android:gravity="center"
|
|
android:includeFontPadding="false"
|
|
android:text="@string/permissions_storage_error_info"
|
|
android:textStyle="bold"
|
|
android:visibility="gone"/>
|
|
|
|
<android.support.v7.widget.CardView
|
|
android:id="@+id/card"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="@dimen/file_browser_content_left_margin"
|
|
android:layout_marginRight="@dimen/file_browser_content_right_margin"
|
|
android:layout_below="@id/appbar"
|
|
card_view:cardBackgroundColor="@color/colorCardBackground">
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scrollbars="vertical"/>
|
|
|
|
</android.support.v7.widget.CardView>
|
|
|
|
</RelativeLayout>
|
|
</android.support.design.widget.CoordinatorLayout> |