blob: fa083536e49fe85b9df538d1b4a491b905851d67 [file] [log] [blame]
Jeff Hamilton84029622010-08-05 14:29:28 -05001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 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
Michael Kolb370a4f32010-10-06 10:45:32 -070017<FrameLayout
18 xmlns:android="http://schemas.android.com/apk/res/android"
Jeff Hamilton84029622010-08-05 14:29:28 -050019 android:layout_width="match_parent"
Michael Kolb370a4f32010-10-06 10:45:32 -070020 android:layout_height="match_parent">
21 <GridView
22 android:id="@+id/grid"
Jeff Hamilton84029622010-08-05 14:29:28 -050023 android:layout_width="match_parent"
24 android:layout_height="match_parent"
Michael Kolb370a4f32010-10-06 10:45:32 -070025 android:horizontalSpacing="16dip"
26 android:verticalSpacing="16dip"
27 android:stretchMode="spacingWidth"
28 android:scrollbarStyle="insideInset"
29 android:listSelector="@android:drawable/gallery_thumb"
30 android:drawSelectorOnTop="true"
31 android:focusable="true"
32 android:focusableInTouchMode="true"
33 android:numColumns="auto_fit" />
34 <TextView
35 android:id="@android:id/empty"
Jeff Hamilton84029622010-08-05 14:29:28 -050036 android:layout_width="wrap_content"
37 android:layout_height="wrap_content"
38 android:layout_gravity="center"
Jeff Hamilton84029622010-08-05 14:29:28 -050039 android:textAppearance="?android:attr/textAppearanceLarge"
Jeff Hamiltondb90aa82010-09-16 03:38:04 -050040 android:text="@string/empty_bookmarks_folder"
Michael Kolb370a4f32010-10-06 10:45:32 -070041 android:visibility="gone" />
42</FrameLayout>