blob: 72e4b2beb0f8d9328abc46ad2d7cfab75ee5e988 [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-->
Bijan Amirzada41242f22014-03-21 12:12:18 -070017<com.android.browser.SnapshotBar
John Reckef654f12011-07-12 16:42:08 -070018 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">
John Reck8e8cae22012-09-21 17:58:43 -070023 <ImageView
John Reckef654f12011-07-12 16:42:08 -070024 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"
John Reck8e8cae22012-09-21 17:58:43 -070028 android:paddingLeft="16dip" />
John Reckef654f12011-07-12 16:42:08 -070029 <TextView
30 android:id="@+id/date"
31 android:layout_width="wrap_content"
32 android:layout_height="match_parent"
33 android:paddingLeft="8dip"
34 android:singleLine="true"
35 android:gravity="center_vertical"
36 android:textAppearance="?android:attr/textAppearanceMedium" />
37 <TextView
38 android:id="@+id/title"
39 android:layout_width="0dip"
40 android:layout_height="match_parent"
41 android:layout_weight="1"
42 android:paddingLeft="16dip"
43 android:singleLine="true"
44 android:gravity="center_vertical"
45 android:textAppearance="?android:attr/textAppearanceMedium" />
46 <ImageButton
47 android:id="@+id/all_btn"
48 android:layout_width="wrap_content"
49 android:layout_height="match_parent"
50 android:scaleType="center"
51 android:paddingRight="16dip"
52 style="@style/HoloButton"
Bijan Amirzada9b1e9882014-02-26 17:15:46 -080053 android:src="@drawable/ic_bookmarks_history_holo_dark"
John Reck8e8cae22012-09-21 17:58:43 -070054 android:contentDescription="@string/accessibility_button_bookmarks" />
Bijan Amirzada41242f22014-03-21 12:12:18 -070055</com.android.browser.SnapshotBar>