Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(288)

Unified Diff: chrome/android/java/res/layout/menu_item.xml

Issue 2951133003: Clean up tinted ImageView subclasses (Closed)
Patch Set: Comments Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/res/layout/menu_item.xml
diff --git a/chrome/android/java/res/layout/menu_item.xml b/chrome/android/java/res/layout/menu_item.xml
index 3fe96c92acd0223d6051da49e5df5e9fd5dc105f..43468c08363caff5c2d1a7d00407d2f27264d50b 100644
--- a/chrome/android/java/res/layout/menu_item.xml
+++ b/chrome/android/java/res/layout/menu_item.xml
@@ -6,9 +6,11 @@
-->
<!-- Layout for each item in the menu popup -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:chrome="http://schemas.android.com/apk/res-auto"
style="@style/AppMenuItem"
android:layout_width="match_parent"
android:layout_height="?android:attr/listPreferredItemHeightSmall" >
+
<TextView
android:id="@+id/menu_item_text"
android:textAppearance="?android:attr/textAppearanceLargePopupMenu"
@@ -19,11 +21,13 @@
android:gravity="center_vertical"
android:singleLine="true"
android:paddingEnd="9dp" />
+
<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" />
+ android:gravity="center_vertical"
+ chrome:chrometint="@null" />
</LinearLayout>
« no previous file with comments | « chrome/android/java/res/color/checkbox_tint.xml ('k') | chrome/android/java/res/layout/title_button_menu_item.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698