blob: 69e3864389f23eaea4e347bf94ab09a55abed5dd [file] [log] [blame]
John Reckef654f12011-07-12 16:42:08 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright 2011, The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17<com.android.browser.SnapshotBar
18 xmlns:android="http://schemas.android.com/apk/res/android"
Ben Murdochd51bb572011-08-17 20:42:02 +010019 android:layout_width="match_parent"
20 android:layout_height="wrap_content"
John Reckef654f12011-07-12 16:42:08 -070021 android:orientation="horizontal"
22 android:background="@drawable/bg_urlbar">
23 <ImageButton
24 android:id="@+id/date_icon"
25 android:src="@drawable/ic_search_category_history"
26 android:layout_width="wrap_content"
27 android:layout_height="match_parent"
28 android:paddingLeft="16dip"
29 style="@style/HoloButton" />
30 <TextView
31 android:id="@+id/date"
32 android:layout_width="wrap_content"
33 android:layout_height="match_parent"
34 android:paddingLeft="8dip"
35 android:singleLine="true"
36 android:gravity="center_vertical"
37 android:textAppearance="?android:attr/textAppearanceMedium" />
38 <TextView
39 android:id="@+id/title"
40 android:layout_width="0dip"
41 android:layout_height="match_parent"
42 android:layout_weight="1"
43 android:paddingLeft="16dip"
44 android:singleLine="true"
45 android:gravity="center_vertical"
46 android:textAppearance="?android:attr/textAppearanceMedium" />
47 <ImageButton
48 android:id="@+id/all_btn"
49 android:layout_width="wrap_content"
50 android:layout_height="match_parent"
51 android:scaleType="center"
52 android:paddingRight="16dip"
53 style="@style/HoloButton"
54 android:src="@drawable/ic_bookmarks_history_holo_dark" />
55</com.android.browser.SnapshotBar>