Upstream version 9.37.195.0
[platform/framework/web/crosswalk.git] / src / chrome / android / java / res / layout / title_button_menu_item.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
3
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="?android:attr/listPreferredItemHeightSmall">
10     <TextView
11         android:id="@+id/title"
12         android:layout_width="wrap_content"
13         android:layout_height="match_parent"
14         android:layout_gravity="start"
15         android:layout_weight="1"
16         android:background="?android:attr/listChoiceBackgroundIndicator"
17         android:gravity="center_vertical"
18         android:paddingStart="?android:attr/listPreferredItemPaddingStart"
19         android:paddingEnd="9dp"
20         android:singleLine="true"
21         android:textAppearance="?android:attr/textAppearanceLargePopupMenu" />
22
23     <ImageButton
24         android:id="@+id/button"
25         android:layout_width="48dp"
26         android:layout_height="match_parent"
27         android:background="?android:attr/listChoiceBackgroundIndicator"
28         android:padding="10dp"
29         android:scaleType="fitCenter" />
30     
31 </LinearLayout>