blob: 07bf127a0f025a61da5a218d4bf1917bc9721ea6 [file] [log] [blame]
Jeff Sharkey09c10bf2013-06-30 20:02:59 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2013 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -070017<com.android.documentsui.DirectoryView xmlns:android="http://schemas.android.com/apk/res/android"
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070018 android:layout_width="match_parent"
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -070019 android:layout_height="match_parent"
20 android:background="@drawable/ic_dir_shadow">
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070021
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -070022 <TextView
23 android:id="@android:id/empty"
24 android:layout_width="match_parent"
25 android:layout_height="match_parent"
26 android:gravity="center"
27 android:text="@string/empty"
Jeff Sharkey5e1884d2013-09-10 17:56:39 -070028 android:visibility="gone"
29 style="@style/TextAppearance.Medium" />
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -070030
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070031 <ListView
32 android:id="@+id/list"
33 android:layout_width="match_parent"
Jeff Sharkeyc317af82013-07-01 16:56:54 -070034 android:layout_height="match_parent"
35 android:listSelector="@android:color/transparent" />
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070036
37 <GridView
38 android:id="@+id/grid"
39 android:layout_width="match_parent"
40 android:layout_height="match_parent"
41 android:listSelector="@android:color/transparent"
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -070042 android:visibility="gone" />
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070043
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -070044</com.android.documentsui.DirectoryView>