blob: f0ab0d10c8f7ac86f6bae595638016fb1c6bc867 [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
17<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="match_parent"
19 android:layout_height="match_parent">
20
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -070021 <TextView
22 android:id="@android:id/empty"
23 android:layout_width="match_parent"
24 android:layout_height="match_parent"
25 android:gravity="center"
26 android:text="@string/empty"
Jeff Sharkey5e1884d2013-09-10 17:56:39 -070027 android:visibility="gone"
28 style="@style/TextAppearance.Medium" />
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -070029
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070030 <ListView
31 android:id="@+id/list"
32 android:layout_width="match_parent"
Jeff Sharkeyc317af82013-07-01 16:56:54 -070033 android:layout_height="match_parent"
34 android:listSelector="@android:color/transparent" />
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070035
36 <GridView
37 android:id="@+id/grid"
38 android:layout_width="match_parent"
39 android:layout_height="match_parent"
40 android:listSelector="@android:color/transparent"
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -070041 android:visibility="gone" />
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070042
Jeff Sharkey46899c82013-08-18 22:26:48 -070043 <Button
44 android:id="@+id/more"
45 android:layout_width="match_parent"
46 android:layout_height="wrap_content"
47 android:layout_gravity="bottom"
48 android:text="@string/more"
49 android:visibility="gone" />
50
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070051</FrameLayout>