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

Side by Side Diff: chrome/android/java/res/values/attrs.xml

Issue 1187013002: Add a custome edittext that encapsulates the error message logic (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit Created 5 years, 6 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/widget/EmptyAlertEditText.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 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <resources> 6 <resources>
7 <declare-styleable name="TintedImage"> 7 <declare-styleable name="TintedImage">
8 <attr name="tint" format="reference|color" /> 8 <attr name="tint" format="reference|color" />
9 </declare-styleable> 9 </declare-styleable>
10 10
(...skipping 20 matching lines...) Expand all
31 <declare-styleable name="FloatLabelLayout"> 31 <declare-styleable name="FloatLabelLayout">
32 <attr name="floatLabelTextAppearance" format="reference" /> 32 <attr name="floatLabelTextAppearance" format="reference" />
33 <attr name="floatLabelPaddingLeft" format="reference|dimension" /> 33 <attr name="floatLabelPaddingLeft" format="reference|dimension" />
34 <attr name="floatLabelPaddingRight" format="reference|dimension" /> 34 <attr name="floatLabelPaddingRight" format="reference|dimension" />
35 <attr name="floatLabelPaddingTop" format="reference|dimension" /> 35 <attr name="floatLabelPaddingTop" format="reference|dimension" />
36 <attr name="floatLabelPaddingBottom" format="reference|dimension" /> 36 <attr name="floatLabelPaddingBottom" format="reference|dimension" />
37 <!-- The hint to display in the floating label --> 37 <!-- The hint to display in the floating label -->
38 <attr name="floatLabelHint" format="reference|string" /> 38 <attr name="floatLabelHint" format="reference|string" />
39 </declare-styleable> 39 </declare-styleable>
40 40
41 <declare-styleable name="EmptyAlertEditText">
42 <attr name="alertMessage" format="string" />
43 </declare-styleable>
44
41 <declare-styleable name="ButtonCompat"> 45 <declare-styleable name="ButtonCompat">
42 <attr name="buttonColor" format="reference|color"/> 46 <attr name="buttonColor" format="reference|color"/>
43 </declare-styleable> 47 </declare-styleable>
44 48
45 <declare-styleable name="PaddedFrameLayout"> 49 <declare-styleable name="PaddedFrameLayout">
46 <attr name="maxChildWidth" format="dimension" /> 50 <attr name="maxChildWidth" format="dimension" />
47 <attr name="maxChildHeight" format="dimension" /> 51 <attr name="maxChildHeight" format="dimension" />
48 </declare-styleable> 52 </declare-styleable>
49 53
50 <declare-styleable name="BoundedView"> 54 <declare-styleable name="BoundedView">
51 <attr name="maxWidth" format="dimension" /> 55 <attr name="maxWidth" format="dimension" />
52 </declare-styleable> 56 </declare-styleable>
53 57
54 </resources> 58 </resources>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/widget/EmptyAlertEditText.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698