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

Side by Side Diff: ui/android/java/res/layout/color_button_row.xml

Issue 23026006: Add support for color input datalist on Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 2 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"?>
newt (away) 2013/10/09 06:07:03 I'd prefer if this were replaced with a Java class
2 <!--
3 Copyright 2013 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7
8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
9 android:orientation="horizontal"
newt (away) 2013/10/09 06:07:03 unindent by 4
keishi 2013/10/15 16:44:02 Done.
10 android:layout_width="match_parent"
11 android:layout_height="wrap_content">
12
13 <View android:id="@+id/color_button_1"
14 android:background="@drawable/color_button_background"
15 android:layout_weight="1"
16 android:layout_width="wrap_content"
newt (away) 2013/10/09 06:07:03 layout_width should be 0dp for all of these color_
keishi 2013/10/15 16:44:02 Done.
17 android:layout_height="@dimen/color_button_height" />
18
19 <View android:id="@+id/color_button_2"
20 android:background="@drawable/color_button_background"
21 android:layout_weight="1"
22 android:layout_width="wrap_content"
23 android:layout_height="@dimen/color_button_height" />
24
25 <View android:id="@+id/color_button_3"
26 android:background="@drawable/color_button_background"
27 android:layout_weight="1"
28 android:layout_width="wrap_content"
29 android:layout_height="@dimen/color_button_height" />
30
31 <View android:id="@+id/color_button_4"
32 android:background="@drawable/last_color_button_background"
33 android:layout_weight="1"
34 android:layout_width="wrap_content"
35 android:layout_height="@dimen/color_button_height" />
36 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698