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

Side by Side Diff: chrome/android/java/res/layout/three_button_menu_item.xml

Issue 1138993011: Add a way to have three icon menu item (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/appmenu/AppMenuAdapter.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
3 3
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
8 android:layout_width="match_parent" 8 android:layout_width="match_parent"
9 android:layout_height="?android:attr/listPreferredItemHeightSmall" 9 android:layout_height="?android:attr/listPreferredItemHeightSmall"
10 android:layout_gravity="top|start" 10 android:layout_gravity="top|start"
11 android:orientation="horizontal"> 11 android:orientation="horizontal">
12 12
(...skipping 13 matching lines...) Expand all
26 android:background="?attr/listChoiceBackgroundIndicator" 26 android:background="?attr/listChoiceBackgroundIndicator"
27 android:scaleType="center" /> 27 android:scaleType="center" />
28 28
29 <org.chromium.chrome.browser.widget.TintedImageButton 29 <org.chromium.chrome.browser.widget.TintedImageButton
30 android:id="@+id/button_three" 30 android:id="@+id/button_three"
31 android:layout_width="0dp" 31 android:layout_width="0dp"
32 android:layout_height="match_parent" 32 android:layout_height="match_parent"
33 android:layout_weight="1" 33 android:layout_weight="1"
34 android:background="?attr/listChoiceBackgroundIndicator" 34 android:background="?attr/listChoiceBackgroundIndicator"
35 android:scaleType="center" /> 35 android:scaleType="center" />
36
37 <org.chromium.chrome.browser.widget.TintedImageButton
38 android:id="@+id/button_four"
39 android:layout_width="0dp"
40 android:layout_height="match_parent"
41 android:layout_weight="1"
42 android:background="?attr/listChoiceBackgroundIndicator"
43 android:scaleType="center" />
44 </LinearLayout> 36 </LinearLayout>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/appmenu/AppMenuAdapter.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698