blob: 42cc8de0e1c4d93907eae77ac70f612ef06d0354 [file] [log] [blame]
John Recke7c97de2011-05-27 14:42:43 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 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-->
16
17<LinearLayout
18 xmlns:android="http://schemas.android.com/apk/res/android"
19 android:layout_width="match_parent"
20 android:layout_height="wrap_content"
21 android:orientation="horizontal"
22 android:divider="?android:attr/dividerVertical"
23 android:dividerPadding="12dp"
24 android:showDividers="middle"
Vivek Sekhared791da2015-02-22 12:39:05 -080025 android:gravity="end"
John Recke7c97de2011-05-27 14:42:43 -070026 android:minHeight="?android:attr/actionBarSize">
27 <ImageView
28 android:id="@+id/open_context_menu_id"
29 android:layout_width="wrap_content"
30 android:layout_height="match_parent"
Vivek Sekhared791da2015-02-22 12:39:05 -080031 android:paddingStart="16dip"
32 android:paddingEnd="16dip"
Enrico Rosd6efa972014-12-02 19:49:59 -080033 android:src="@drawable/ic_deco_favicon_normal" />
John Recke7c97de2011-05-27 14:42:43 -070034 <ImageView
35 android:id="@+id/new_window_context_menu_id"
36 android:layout_width="wrap_content"
37 android:layout_height="match_parent"
Vivek Sekhared791da2015-02-22 12:39:05 -080038 android:paddingStart="16dip"
39 android:paddingEnd="16dip"
Enrico Rosd6efa972014-12-02 19:49:59 -080040 android:src="@drawable/ic_action_add_tab" />
John Recke7c97de2011-05-27 14:42:43 -070041 <ImageView
42 android:id="@+id/info"
43 android:layout_width="wrap_content"
44 android:layout_height="match_parent"
Vivek Sekhared791da2015-02-22 12:39:05 -080045 android:paddingStart="16dip"
46 android:paddingEnd="16dip"
Enrico Rosd6efa972014-12-02 19:49:59 -080047 android:src="@drawable/ic_deco_info_normal" />
John Recke7c97de2011-05-27 14:42:43 -070048</LinearLayout>