blob: e312a2ac1f6a6ab925acfc8c0c3c1646dae1f9a7 [file] [log] [blame]
John Reck1537b772011-01-11 15:36:01 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 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-->
John Reck13a18752011-01-13 11:32:57 -080016<RelativeLayout
John Reck1537b772011-01-11 15:36:01 -080017 xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="match_parent"
19 android:layout_height="match_parent"
20 android:paddingTop="4dip"
John Reck13a18752011-01-13 11:32:57 -080021 android:paddingBottom="20dip"
22 android:paddingLeft="12dip"
23 android:paddingRight="12dip">
24 <GridView
25 android:id="@+id/bookmarks_list"
John Reck1537b772011-01-11 15:36:01 -080026 android:layout_width="match_parent"
27 android:layout_height="match_parent"
John Reck13a18752011-01-13 11:32:57 -080028 android:numColumns="2"
29 android:paddingBottom="6dip"
30 android:paddingRight="3dip"
31 android:paddingLeft="3dip"
32 android:stretchMode="columnWidth"
33 android:horizontalSpacing="@dimen/widgetHorizontalSpacing"
34 android:verticalSpacing="@dimen/widgetVerticalSpacing"
35 android:drawSelectorOnTop="true"
36 android:listSelector="@drawable/bookmark_widget_thumb_selector"
37 android:fadingEdgeLength="24dp" />
38
39 <ImageButton
40 android:id="@+id/app_shortcut"
41 android:layout_width="56dip"
42 android:layout_height="56dip"
43 android:layout_alignParentBottom="true"
44 android:layout_alignParentRight="true"
45 android:layout_marginRight="4dip"
46 android:layout_marginBottom="6dip"
47 android:scaleType="centerInside"
48 android:src="@mipmap/ic_launcher_browser"
49 android:background="@drawable/bookmark_widget_thumb_selector"
50 android:padding="4dip" />
51</RelativeLayout>