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

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

Issue 23026006: Add support for color input datalist on Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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/08/26 20:23:20 copyright
2
3 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
newt (away) 2013/08/26 20:23:20 don't use a nested layout just to create a backgro
keishi 2013/08/29 03:40:47 Done.
4 android:background="@drawable/color_button_border"
5 android:orientation="vertical"
6 android:layout_width="wrap_content"
7 android:layout_height="wrap_content"
8 android:padding="1dp">
9 <View android:id="@+id/color_button_swatch"
10 android:background="#ff0000"
newt (away) 2013/08/26 20:23:20 unused background attribute
11 android:layout_width="48dp"
12 android:layout_height="48dp" />
13 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698