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

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

Issue 203173008: Cleanup Icon Row custom code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed tests Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
3
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
8 android:layout_width="match_parent"
9 android:layout_height="wrap_content"
10 android:layout_gravity="top|start"
11 android:orientation="horizontal">
12
13 <ImageButton
14 android:id="@+id/button_one"
15 android:layout_width="wrap_content"
16 android:layout_height="match_parent"
17 android:layout_weight="1"
18 android:background="?android:attr/selectableItemBackground"
19 android:scaleType="center" />
20
21 <View
22 android:layout_width="@dimen/menu_item_divider_width"
23 android:layout_height="?android:attr/listPreferredItemHeightSmall"
24 android:layout_marginBottom="@dimen/menu_item_divider_width"
25 android:background="?android:attr/listDivider" />
26
27 <ImageButton
28 android:id="@+id/button_two"
29 android:layout_width="wrap_content"
30 android:layout_height="match_parent"
31 android:layout_weight="1"
32 android:background="?android:attr/selectableItemBackground"
33 android:scaleType="center" />
34
35 <View
36 android:layout_width="@dimen/menu_item_divider_width"
37 android:layout_height="?android:attr/listPreferredItemHeightSmall"
38 android:layout_marginBottom="@dimen/menu_item_divider_width"
39 android:background="?android:attr/listDivider" />
40
41 <ImageButton
42 android:id="@+id/button_three"
43 android:layout_width="wrap_content"
44 android:layout_height="match_parent"
45 android:layout_weight="1"
46 android:background="?android:attr/selectableItemBackground"
47 android:scaleType="center" />
48
49 </LinearLayout>
OLDNEW
« no previous file with comments | « chrome/android/java/res/layout/menu_icon_row.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