Visually separate directory background from sidebar.
Lower shadows so the "real" effect isn't so prominent.
Hitchhikders:
Consolidate bool values in config.xml files (were in dimens.xml).
Add missing supportsRecents & supportsSearch methods
to RootInfo.
Rename RecentLoader to RecentsLoader so it doesn't defy
searching for "Recents" string.
Move Downloads below the divider.
Change-Id: I06c76e26ec6df6541860a1448865c67ed953ed43
103 lines
3.7 KiB
XML
103 lines
3.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2013 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<com.android.documentsui.DirectoryView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/directory_background"
|
|
android:outlineProvider="bounds"
|
|
android:elevation="4dp"
|
|
android:orientation="vertical">
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/progress_bar_height"
|
|
android:indeterminate="true"
|
|
style="@style/TrimmedHorizontalProgressBar"
|
|
android:visibility="gone"/>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/container_message_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:elevation="8dp"
|
|
android:background="@color/material_grey_50"
|
|
android:visibility="gone"/>
|
|
|
|
<!-- The empty container view -->
|
|
<FrameLayout
|
|
android:id="@android:id/empty"
|
|
android:gravity="center"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:background="@color/directory_background"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true"
|
|
android:visibility="gone">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/content"
|
|
android:gravity="center"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/artwork"
|
|
android:src="@drawable/cabinet"
|
|
android:adjustViewBounds="true"
|
|
android:layout_height="250dp"
|
|
android:layout_width="fill_parent"
|
|
android:alpha="1"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginBottom="25dp"
|
|
android:scaleType="fitCenter"
|
|
android:contentDescription="@null" />
|
|
|
|
<TextView
|
|
android:id="@+id/message"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/empty"
|
|
style="@android:style/TextAppearance.Material.Subhead" />
|
|
|
|
</LinearLayout>
|
|
</FrameLayout>
|
|
|
|
<!-- This FrameLayout works around b/24189541 -->
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/dir_list"
|
|
android:scrollbars="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingStart="0dp"
|
|
android:paddingEnd="0dp"
|
|
android:paddingTop="0dp"
|
|
android:paddingBottom="0dp"
|
|
android:clipToPadding="false"
|
|
android:scrollbarStyle="outsideOverlay"
|
|
android:drawSelectorOnTop="true" />
|
|
|
|
</FrameLayout>
|
|
|
|
</com.android.documentsui.DirectoryView>
|