Searched defs:backgroundColor (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/core/java/android/text/style/
H A DSuggestionRangeSpan.java67 public void setBackgroundColor(int backgroundColor) { argument
68 mBackgroundColor = backgroundColor;
/frameworks/support/v7/cardview/api21/android/support/v7/widget/
H A DCardViewApi21.java24 public void initialize(CardViewDelegate cardView, Context context, int backgroundColor, argument
26 final RoundRectDrawable backgroundDrawable = new RoundRectDrawable(backgroundColor, radius);
H A DRoundRectDrawable.java45 public RoundRectDrawable(int backgroundColor, float radius) { argument
48 mPaint.setColor(backgroundColor);
/frameworks/support/v7/cardview/base/android/support/v7/widget/
H A DCardViewImpl.java23 void initialize(CardViewDelegate cardView, Context context, int backgroundColor, float radius, argument
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.h75 float backgroundColor[3]; member in struct:android::BootAnimation::Animation::Part
/frameworks/support/v7/cardview/eclair-mr1/android/support/v7/widget/
H A DCardViewEclairMr1.java75 public void initialize(CardViewDelegate cardView, Context context, int backgroundColor, argument
77 RoundRectDrawableWithShadow background = createBackground(context, backgroundColor, radius,
84 RoundRectDrawableWithShadow createBackground(Context context, int backgroundColor, argument
86 return new RoundRectDrawableWithShadow(context.getResources(), backgroundColor, radius,
H A DRoundRectDrawableWithShadow.java88 RoundRectDrawableWithShadow(Resources resources, int backgroundColor, float radius, argument
94 mPaint.setColor(backgroundColor);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DHeadersFragment.java221 private void updateFadingEdgeToBrandColor(int backgroundColor) { argument
227 new int[] {Color.TRANSPARENT, backgroundColor});
H A DHeadersSupportFragment.java223 private void updateFadingEdgeToBrandColor(int backgroundColor) { argument
229 new int[] {Color.TRANSPARENT, backgroundColor});
/frameworks/base/core/java/android/view/accessibility/
H A DCaptioningManager.java321 public final int backgroundColor; field in class:CaptioningManager.CaptionStyle
359 private CaptionStyle(int foregroundColor, int backgroundColor, int edgeType, int edgeColor, argument
362 mHasBackgroundColor = hasColor(backgroundColor);
370 this.backgroundColor = mHasBackgroundColor ? backgroundColor : Color.BLACK;
405 overlay.backgroundColor : backgroundColor;
483 final int backgroundColor = Secure.getInt(
484 cr, Secure.ACCESSIBILITY_CAPTIONING_BACKGROUND_COLOR, defStyle.backgroundColor);
497 return new CaptionStyle(foregroundColor, backgroundColor, edgeTyp
[all...]
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
H A DExtendedBitmapDrawable.java97 // Placeholder is not optional because backgroundColor is part of it.
676 * Set {@link #backgroundColor} to the color used for the background of the placeholder and
739 public int backgroundColor = 0; field in class:ExtendedBitmapDrawable.ExtendedOptions
813 if (backgroundColor == 0
817 + "either backgroundColor or placeholder must be set.");
824 if (backgroundColor != 0 && Color.alpha(backgroundColor) != 255) {
827 + "backgroundColor must be set to an opaque color.");
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java684 Drawable overrideBackgroundDrawable, int backgroundColor) {
725 mWorkPaint.setColor(backgroundColor);
683 createChipBitmap(RecipientEntry contact, TextPaint paint, Drawable overrideBackgroundDrawable, int backgroundColor) argument
/frameworks/base/core/java/android/view/
H A DViewGroup.java3160 Bitmap createSnapshot(Bitmap.Config quality, int backgroundColor, boolean skipChildren) { argument
3175 Bitmap b = super.createSnapshot(quality, backgroundColor, skipChildren);
H A DView.java15490 Bitmap createSnapshot(Bitmap.Config quality, int backgroundColor, boolean skipChildren) { argument
15527 if ((backgroundColor & 0xff000000) != 0) {
15528 bitmap.eraseColor(backgroundColor);

Completed in 348 milliseconds