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

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

Issue 2398543003: Move Android view based ColorPicker from ui/ to components/ (Closed)
Patch Set: add owners Created 4 years, 1 month 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
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2013 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file.
5 -->
6
7 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
8 android:layout_width="match_parent"
9 android:layout_height="wrap_content"
10 android:paddingBottom="15dp"
11 android:paddingStart="20dp"
12 android:paddingEnd="20dp"
13 android:paddingTop="15dp" >
14
15 <TextView
16 android:id="@+id/title"
17 style="?android:attr/textAppearanceLarge"
18 android:layout_width="match_parent"
19 android:layout_height="wrap_content"
20 android:layout_toStartOf="@+id/selected_color_view_border"
21 android:layout_centerVertical="true"
22 android:textColor="#33B5E5"
23 android:ellipsize="end"
24 android:singleLine="true" />
25
26 <FrameLayout
27 android:layout_width="40dp"
28 android:layout_height="40dp"
29 android:layout_alignParentEnd="true"
30 android:id="@+id/selected_color_view_border"
31 android:background="@drawable/color_picker_border"
32 android:padding="2dp">
33
34 <View
35 android:id="@+id/selected_color_view"
36 android:layout_width="match_parent"
37 android:layout_height="match_parent"
38 android:background="@android:color/black" />
39 </FrameLayout>
40
41 </RelativeLayout>
OLDNEW
« no previous file with comments | « ui/android/java/res/layout/color_picker_dialog_content.xml ('k') | ui/android/java/res/values/colors.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698