summaryrefslogtreecommitdiffstats
path: root/res/layout/swe_menu_item.xml
blob: 9be47cdd7a474c38ce0d5de6be2f42b8753e889a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2011 The Chromium Authors. All rights reserved.

     Use of this source code is governed by a BSD-style license that can be
     found in the LICENSE file.
-->
<!-- Layout for each item in the menu popup -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="?android:attr/listPreferredItemHeightSmall"
    android:paddingStart="?android:attr/listPreferredItemPaddingStart"
    android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
    android:background="?android:attr/listChoiceBackgroundIndicator">
    <TextView
        android:id="@+id/menu_item_text"
        android:textAppearance="?android:attr/textAppearanceSmallPopupMenu"
        android:layout_weight="1"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:gravity="center_vertical"
        android:background="@android:color/transparent"
        android:singleLine="true"
         />
    <view
        class="com.android.browser.appmenu.AppMenuItemIcon"
        android:id="@+id/menu_item_icon"
        android:layout_weight="0"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="end"
        android:gravity="center_vertical"
         />
    <CheckBox
        android:id="@+id/menu_item_checkbox"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:tint="@color/black"
        android:visibility="gone"
        android:clickable="true" />
</LinearLayout>