blob: 4a13c6f79c6d32bfc389133b7f722797a5a699c7 [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"
John Reckf3828cd2011-06-14 17:21:55 -070023 android:paddingTop="@dimen/combo_paddingTop">
John Reck608baa72010-11-24 10:32:28 -080024
25 <FrameLayout
26 android:id="@+id/header_container"
Jeff Hamilton84029622010-08-05 14:29:28 -050027 android:layout_width="match_parent"
Jeff Hamilton84029622010-08-05 14:29:28 -050028 android:layout_height="wrap_content"
Michael Kolb370a4f32010-10-06 10:45:32 -070029 android:visibility="gone" />
John Reck608baa72010-11-24 10:32:28 -080030
31 <FrameLayout
32 android:layout_width="match_parent"
33 android:layout_height="match_parent">
John Reck71efc2b2011-05-09 16:54:28 -070034 <com.android.browser.view.BookmarkExpandableGridView
John Reck608baa72010-11-24 10:32:28 -080035 android:id="@+id/grid"
John Reck71efc2b2011-05-09 16:54:28 -070036 android:layout_width="match_parent"
John Reck608baa72010-11-24 10:32:28 -080037 android:layout_height="match_parent"
John Reckb3417f02011-01-14 11:01:05 -080038 android:layout_gravity="center_horizontal"
John Reck71efc2b2011-05-09 16:54:28 -070039 android:childDivider="@android:color/transparent"
40 android:divider="@android:color/transparent"
41 android:dividerHeight="0dp" />
John Reck608baa72010-11-24 10:32:28 -080042 <ListView
43 android:id="@+id/list"
44 android:layout_width="match_parent"
45 android:layout_height="match_parent"
John Reckb3417f02011-01-14 11:01:05 -080046 android:listSelector="@drawable/bookmark_thumb_selector"
47 android:drawSelectorOnTop="true"
John Reck608baa72010-11-24 10:32:28 -080048 android:focusable="true"
49 android:focusableInTouchMode="true"
50 android:visibility="gone"/>
51 <TextView
52 android:id="@android:id/empty"
53 android:layout_width="wrap_content"
54 android:layout_height="wrap_content"
55 android:layout_gravity="center"
56 android:textAppearance="?android:attr/textAppearanceLarge"
57 android:text="@string/empty_bookmarks_folder"
58 android:visibility="gone" />
59 </FrameLayout>
60
61</LinearLayout>