Fix issue with browser action toolbar putting all extension icons in overflow once...
[chromium-blink-merge.git] / chrome / android / java / res / layout / three_button_menu_item.xml
blobebc73532fb5ffdd57875b4a25612b9058e67aefe
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
4      Use of this source code is governed by a BSD-style license that can be
5      found in the LICENSE file.
6 -->
7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
8     android:layout_width="match_parent"
9     android:layout_height="wrap_content"
10     android:layout_gravity="top|start"
11     android:orientation="horizontal">
13     <ImageButton
14         android:id="@+id/button_one"
15         android:layout_width="wrap_content"
16         android:layout_height="match_parent"
17         android:layout_weight="1"
18         android:background="?android:attr/selectableItemBackground"
19         android:scaleType="center" />
21     <View
22         android:layout_width="1dp"
23         android:layout_height="?android:attr/listPreferredItemHeightSmall"
24         android:background="?android:attr/listDivider" />
26     <ImageButton
27         android:id="@+id/button_two"
28         android:layout_width="wrap_content"
29         android:layout_height="match_parent"
30         android:layout_weight="1"
31         android:background="?android:attr/selectableItemBackground"
32         android:scaleType="center" />
34     <View
35         android:layout_width="1dp"
36         android:layout_height="?android:attr/listPreferredItemHeightSmall"
37         android:background="?android:attr/listDivider" />
39     <ImageButton
40         android:id="@+id/button_three"
41         android:layout_width="wrap_content"
42         android:layout_height="match_parent"
43         android:layout_weight="1"
44         android:background="?android:attr/selectableItemBackground"
45         android:scaleType="center" />
47 </LinearLayout>