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

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

Issue 2586643002: [Downloads] Add a horizontal material-styled ProgressBar (Closed)
Patch Set: Created 4 years 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
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 <declare-styleable name="BoundedView"> 50 <declare-styleable name="BoundedView">
51 <attr name="maxWidth" format="dimension" /> 51 <attr name="maxWidth" format="dimension" />
52 <attr name="maxHeight" format="dimension" /> 52 <attr name="maxHeight" format="dimension" />
53 </declare-styleable> 53 </declare-styleable>
54 54
55 <declare-styleable name="ClipDrawableProgressBar"> 55 <declare-styleable name="ClipDrawableProgressBar">
56 <attr name="progressBarColor" format="reference|color" /> 56 <attr name="progressBarColor" format="reference|color" />
57 <attr name="backgroundColor" format="reference|color" /> 57 <attr name="backgroundColor" format="reference|color" />
58 </declare-styleable> 58 </declare-styleable>
59 59
60 <declare-styleable name="MaterialProgressBar">
61 <attr name="colorBackground" format="reference|color" />
62 <attr name="colorProgress" format="reference|color" />
63 <attr name="colorSecondaryProgress" format="reference|color" />
64 <attr name="colorThrobber" format="reference|color" />
Ian Wen 2016/12/20 23:17:58 Try removing this if it is not critical? Also it
gone 2016/12/21 00:54:23 Dropped the throbber specification; just using a b
65 </declare-styleable>
66
60 <declare-styleable name="RadioButtonWithDescription"> 67 <declare-styleable name="RadioButtonWithDescription">
61 <attr name="titleText" format="string" /> 68 <attr name="titleText" format="string" />
62 </declare-styleable> 69 </declare-styleable>
63 70
64 <declare-styleable name="TextMessageWithLinkAndIconPreference"> 71 <declare-styleable name="TextMessageWithLinkAndIconPreference">
65 <!-- Used on a TextMessageWithLinkAndIconPreference that is followed 72 <!-- Used on a TextMessageWithLinkAndIconPreference that is followed
66 by another TextMessageWithLinkAndIconPreference to remove the 73 by another TextMessageWithLinkAndIconPreference to remove the
67 bottom spacing, so that related paragraphs of text are closer 74 bottom spacing, so that related paragraphs of text are closer
68 to each other. --> 75 to each other. -->
69 <attr name="noBottomSpacing" format="boolean" /> 76 <attr name="noBottomSpacing" format="boolean" />
70 </declare-styleable> 77 </declare-styleable>
71 </resources> 78 </resources>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698