| <?xml version="1.0" encoding="utf-8"?> |
| <!-- |
| Copyright 2015 The Chromium Authors |
| Use of this source code is governed by a BSD-style license that can be |
| found in the LICENSE file. |
| --> |
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| xmlns:app="http://schemas.android.com/apk/res-auto" |
| style="@style/AppMenuItem" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:paddingVertical="@dimen/overflow_menu_update_padding" |
| android:orientation="horizontal" > |
| |
| <LinearLayout |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:minHeight="@dimen/overflow_menu_update_min_height" |
| android:layout_weight="1" |
| android:layout_gravity="start" |
| android:paddingEnd="9dp" |
| android:orientation="vertical" > |
| |
| <TextView |
| android:id="@+id/menu_item_text" |
| android:layout_width="wrap_content" |
| android:layout_height="match_parent" |
| android:gravity="center_vertical" |
| android:textAppearance="@style/TextAppearance.DensityAdaptive.UpdateMenuItem" /> |
| |
| <TextView |
| android:id="@+id/menu_item_summary" |
| android:layout_width="wrap_content" |
| android:layout_height="match_parent" |
| android:gravity="center_vertical" |
| android:textAppearance="@style/TextAppearance.TextSmall.Secondary" /> |
| |
| </LinearLayout> |
| |
| <org.chromium.ui.widget.ChromeImageView |
| 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" |
| app:tint="@null" |
| android:importantForAccessibility="no" /> |
| |
| </LinearLayout> |