blob: 8c8189ab37d02d9b5c3bcd647c065aae826ae559 [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"
Sagar Dhawan37765532015-07-31 18:46:35 -070021 android:background="@android:color/white"
Enrico Ros1f5a0952014-11-18 20:15:48 -080022 android:orientation="horizontal" >
John Reck8e8cae22012-09-21 17:58:43 -070023 <ImageView
Sagar Dhawan37765532015-07-31 18:46:35 -070024 android:id="@+id/reader_icon"
25 android:src="@drawable/ic_deco_reader_mode_normal"
26 android:layout_width="wrap_content"
27 android:layout_height="match_parent"
28 android:visibility="gone"
29 android:paddingEnd="16dip"
30 android:paddingStart="16dip" />
31 <ImageView
32 android:id="@+id/snapshot_icon"
Enrico Ros1f5a0952014-11-18 20:15:48 -080033 android:src="@drawable/ic_suggest_history_normal"
John Reckef654f12011-07-12 16:42:08 -070034 android:layout_width="wrap_content"
35 android:layout_height="match_parent"
Vivek Sekhared791da2015-02-22 12:39:05 -080036 android:paddingStart="8dip"
Sagar Dhawan37765532015-07-31 18:46:35 -070037 android:paddingEnd="8dip"/>
38 <ImageView
39 android:id="@+id/favicon"
40 android:layout_width="52dip"
41 android:layout_height="match_parent"
42 android:paddingStart="16dip"
43 android:paddingEnd="16dip"
44 android:scaleType="fitCenter" />
45 <FrameLayout
46 android:id="@+id/toggle_container"
John Reckef654f12011-07-12 16:42:08 -070047 android:layout_width="0dip"
48 android:layout_height="match_parent"
Sagar Dhawan37765532015-07-31 18:46:35 -070049 android:layout_weight="1">
50 <TextView
51 android:id="@+id/title"
52 android:layout_width="match_parent"
53 android:layout_height="match_parent"
54 android:singleLine="true"
55 android:gravity="center_vertical"
56 android:textAppearance="?android:attr/textAppearanceMedium" />
57 <TextView
58 android:id="@+id/date"
59 android:layout_width="wrap_content"
60 android:layout_height="match_parent"
61 android:singleLine="true"
62 android:gravity="center_vertical"
63 android:textAppearance="?android:attr/textAppearanceMedium" />
64 </FrameLayout>
Enrico Ros1f5a0952014-11-18 20:15:48 -080065
John Reckef654f12011-07-12 16:42:08 -070066 <ImageButton
Sagar Dhawan37765532015-07-31 18:46:35 -070067 android:id="@+id/more"
68 style="@style/OverflowButton" />
69
Bijan Amirzada41242f22014-03-21 12:12:18 -070070</com.android.browser.SnapshotBar>