blob: 81327e43517c2eeba483a94c527316b5fe2fe022 [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
John Reck608baa72010-11-24 10:32:28 -080017<LinearLayout
Michael Kolb370a4f32010-10-06 10:45:32 -070018 xmlns:android="http://schemas.android.com/apk/res/android"
John Reck0ce8a942011-01-14 19:57:09 -080019 android:id="@+id/bookmarks"
Jeff Hamilton84029622010-08-05 14:29:28 -050020 android:layout_width="match_parent"
John Reck608baa72010-11-24 10:32:28 -080021 android:layout_height="match_parent"
John Reck0ce8a942011-01-14 19:57:09 -080022 android:orientation="vertical"
23 android:paddingTop="@dimen/combo_paddingTop"
24 android:paddingLeft="@dimen/combo_paddingLeftRight"
25 android:paddingRight="@dimen/combo_paddingLeftRight">
John Reck608baa72010-11-24 10:32:28 -080026
27 <FrameLayout
28 android:id="@+id/header_container"
Jeff Hamilton84029622010-08-05 14:29:28 -050029 android:layout_width="match_parent"
Jeff Hamilton84029622010-08-05 14:29:28 -050030 android:layout_height="wrap_content"
Michael Kolb370a4f32010-10-06 10:45:32 -070031 android:visibility="gone" />
John Reck608baa72010-11-24 10:32:28 -080032
33 <FrameLayout
34 android:layout_width="match_parent"
35 android:layout_height="match_parent">
36 <GridView
37 android:id="@+id/grid"
John Reckb3417f02011-01-14 11:01:05 -080038 android:layout_width="wrap_content"
John Reck608baa72010-11-24 10:32:28 -080039 android:layout_height="match_parent"
John Reckb3417f02011-01-14 11:01:05 -080040 android:layout_gravity="center_horizontal"
41 android:horizontalSpacing="@dimen/combo_horizontalSpacing"
42 android:verticalSpacing="40dip"
John Reck608baa72010-11-24 10:32:28 -080043 android:scrollbarStyle="insideInset"
John Reck93aa0742010-11-30 17:41:57 -080044 android:listSelector="@drawable/bookmark_thumb_selector"
John Reck608baa72010-11-24 10:32:28 -080045 android:drawSelectorOnTop="true"
46 android:focusable="true"
47 android:focusableInTouchMode="true"
John Reckb3417f02011-01-14 11:01:05 -080048 android:numColumns="auto_fit"
49 android:stretchMode="spacingWidth" />
John Reck608baa72010-11-24 10:32:28 -080050 <ListView
51 android:id="@+id/list"
52 android:layout_width="match_parent"
53 android:layout_height="match_parent"
John Reckb3417f02011-01-14 11:01:05 -080054 android:listSelector="@drawable/bookmark_thumb_selector"
55 android:drawSelectorOnTop="true"
John Reck608baa72010-11-24 10:32:28 -080056 android:focusable="true"
57 android:focusableInTouchMode="true"
58 android:visibility="gone"/>
59 <TextView
60 android:id="@android:id/empty"
61 android:layout_width="wrap_content"
62 android:layout_height="wrap_content"
63 android:layout_gravity="center"
64 android:textAppearance="?android:attr/textAppearanceLarge"
65 android:text="@string/empty_bookmarks_folder"
66 android:visibility="gone" />
67 </FrameLayout>
68
69</LinearLayout>