Jeff Hamilton | 8402962 | 2010-08-05 14:29:28 -0500 | [diff] [blame] | 1 | <?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 Kolb | 370a4f3 | 2010-10-06 10:45:32 -0700 | [diff] [blame^] | 17 | <FrameLayout |
| 18 | xmlns:android="http://schemas.android.com/apk/res/android" |
Jeff Hamilton | 8402962 | 2010-08-05 14:29:28 -0500 | [diff] [blame] | 19 | android:layout_width="match_parent" |
Michael Kolb | 370a4f3 | 2010-10-06 10:45:32 -0700 | [diff] [blame^] | 20 | android:layout_height="match_parent"> |
| 21 | <GridView |
| 22 | android:id="@+id/grid" |
Jeff Hamilton | 8402962 | 2010-08-05 14:29:28 -0500 | [diff] [blame] | 23 | android:layout_width="match_parent" |
| 24 | android:layout_height="match_parent" |
Michael Kolb | 370a4f3 | 2010-10-06 10:45:32 -0700 | [diff] [blame^] | 25 | 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 Hamilton | 8402962 | 2010-08-05 14:29:28 -0500 | [diff] [blame] | 36 | android:layout_width="wrap_content" |
| 37 | android:layout_height="wrap_content" |
| 38 | android:layout_gravity="center" |
Jeff Hamilton | 8402962 | 2010-08-05 14:29:28 -0500 | [diff] [blame] | 39 | android:textAppearance="?android:attr/textAppearanceLarge" |
Jeff Hamilton | db90aa8 | 2010-09-16 03:38:04 -0500 | [diff] [blame] | 40 | android:text="@string/empty_bookmarks_folder" |
Michael Kolb | 370a4f3 | 2010-10-06 10:45:32 -0700 | [diff] [blame^] | 41 | android:visibility="gone" /> |
| 42 | </FrameLayout> |