| Index: chrome/android/java/res/layout/update_menu_item.xml
|
| diff --git a/chrome/android/java/res/layout/update_menu_item.xml b/chrome/android/java/res/layout/update_menu_item.xml
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..054b00108f80e4a8f6aca4f77c63d207973aba52
|
| --- /dev/null
|
| +++ b/chrome/android/java/res/layout/update_menu_item.xml
|
| @@ -0,0 +1,46 @@
|
| +<?xml version="1.0" encoding="utf-8"?>
|
| +<!-- Copyright 2015 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.
|
| +-->
|
| +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
| + style="@style/AppMenuItem"
|
| + android:layout_width="match_parent"
|
| + android:layout_height="wrap_content"
|
| + android:paddingTop="12dp"
|
| + android:paddingBottom="12dp"
|
| + android:orientation="horizontal" >
|
| +
|
| + <LinearLayout
|
| + android:layout_width="match_parent"
|
| + android:layout_height="wrap_content"
|
| + 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:textAppearance="?android:attr/textAppearanceLargePopupMenu"
|
| + android:textColor="#dc5554" />
|
| +
|
| + <TextView
|
| + android:id="@+id/menu_item_summary"
|
| + android:layout_width="wrap_content"
|
| + android:layout_height="match_parent"
|
| + android:textSize="12sp"
|
| + android:textColor="#646464" />
|
| +
|
| + </LinearLayout>
|
| +
|
| + <org.chromium.chrome.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" />
|
| +
|
| +</LinearLayout>
|
|
|