blob: bcabc03b5bd55847f1d039f8cb167b7f856a6e6d [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">
John Reck71efc2b2011-05-09 16:54:28 -070036 <com.android.browser.view.BookmarkExpandableGridView
John Reck608baa72010-11-24 10:32:28 -080037 android:id="@+id/grid"
John Reck71efc2b2011-05-09 16:54:28 -070038 android:layout_width="match_parent"
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"
John Reck71efc2b2011-05-09 16:54:28 -070041 android:childDivider="@android:color/transparent"
42 android:divider="@android:color/transparent"
43 android:dividerHeight="0dp" />
John Reck608baa72010-11-24 10:32:28 -080044 <ListView
45 android:id="@+id/list"
46 android:layout_width="match_parent"
47 android:layout_height="match_parent"
John Reckb3417f02011-01-14 11:01:05 -080048 android:listSelector="@drawable/bookmark_thumb_selector"
49 android:drawSelectorOnTop="true"
John Reck608baa72010-11-24 10:32:28 -080050 android:focusable="true"
51 android:focusableInTouchMode="true"
52 android:visibility="gone"/>
53 <TextView
54 android:id="@android:id/empty"
55 android:layout_width="wrap_content"
56 android:layout_height="wrap_content"
57 android:layout_gravity="center"
58 android:textAppearance="?android:attr/textAppearanceLarge"
59 android:text="@string/empty_bookmarks_folder"
60 android:visibility="gone" />
61 </FrameLayout>
62
63</LinearLayout>