blob: 434b2f14175813ee924c0a9b569f79048415eb05 [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"
Enrico Ros1f5a0952014-11-18 20:15:48 -080021 android:orientation="horizontal" >
John Reck8e8cae22012-09-21 17:58:43 -070022 <ImageView
John Reckef654f12011-07-12 16:42:08 -070023 android:id="@+id/date_icon"
Enrico Ros1f5a0952014-11-18 20:15:48 -080024 android:src="@drawable/ic_suggest_history_normal"
John Reckef654f12011-07-12 16:42:08 -070025 android:layout_width="wrap_content"
26 android:layout_height="match_parent"
Vivek Sekhared791da2015-02-22 12:39:05 -080027 android:paddingStart="16dip" />
John Reckef654f12011-07-12 16:42:08 -070028 <TextView
29 android:id="@+id/date"
30 android:layout_width="wrap_content"
31 android:layout_height="match_parent"
Vivek Sekhared791da2015-02-22 12:39:05 -080032 android:paddingStart="8dip"
John Reckef654f12011-07-12 16:42:08 -070033 android:singleLine="true"
34 android:gravity="center_vertical"
35 android:textAppearance="?android:attr/textAppearanceMedium" />
36 <TextView
37 android:id="@+id/title"
38 android:layout_width="0dip"
39 android:layout_height="match_parent"
40 android:layout_weight="1"
Vivek Sekhared791da2015-02-22 12:39:05 -080041 android:paddingStart="16dip"
John Reckef654f12011-07-12 16:42:08 -070042 android:singleLine="true"
43 android:gravity="center_vertical"
44 android:textAppearance="?android:attr/textAppearanceMedium" />
Enrico Ros1f5a0952014-11-18 20:15:48 -080045
John Reckef654f12011-07-12 16:42:08 -070046 <ImageButton
47 android:id="@+id/all_btn"
Enrico Ros1f5a0952014-11-18 20:15:48 -080048 style="@style/NavButton"
John Reckef654f12011-07-12 16:42:08 -070049 android:layout_width="wrap_content"
Enrico Ros1f5a0952014-11-18 20:15:48 -080050 android:contentDescription="@string/accessibility_button_bookmarks"
Vivek Sekhared791da2015-02-22 12:39:05 -080051 android:paddingEnd="16dip"
Enrico Ros1f5a0952014-11-18 20:15:48 -080052 android:scaleType="center"
Enrico Rosd6efa972014-12-02 19:49:59 -080053 android:src="@drawable/ic_deco_bookmarks_normal" />
Bijan Amirzada41242f22014-03-21 12:12:18 -070054</com.android.browser.SnapshotBar>