HomeSort by relevance Sort by last modified time
    Searched defs:textColor (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /external/ImageMagick/Magick++/demo/
button.cpp 46 string textColor = "red";
68 button.fillColor( textColor );
  /packages/apps/Dialer/java/com/android/dialer/app/list/
BlockedListSearchAdapter.java 49 final int textColor = resources.getColor(R.color.blocked_number_block_color);
50 view.getDataView().setTextColor(textColor);
51 view.getLabelView().setTextColor(textColor);
57 final int textColor = resources.getColor(R.color.dialer_secondary_text_color);
58 view.getDataView().setTextColor(textColor);
59 view.getLabelView().setTextColor(textColor);
  /frameworks/base/core/java/android/text/style/
TextAppearanceSpan.java 59 ColorStateList textColor;
65 textColor = a.getColorStateList(com.android.internal.R.styleable.
113 textColor = a.getColorStateList(colorList);
117 mTextColor = textColor;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
RecentsView.java 201 int textColor = Utils.getColorAttr(mContext, R.attr.wallpaperTextColor);
202 boolean usingDarkText = Color.luminance(textColor) < 0.5f;
204 mEmptyView.setTextColor(textColor);
206 {android.R.attr.state_enabled}}, new int[]{textColor}));
209 mStackActionButton.setTextColor(textColor);
    [all...]
  /prebuilts/misc/windows/sdl2/test/
testime.c 33 static SDL_Color textColor = {0,0,0,0};
122 SDL_Surface *textSur = TTF_RenderUTF8_Blended(font, text, textColor);
170 SDL_Surface *textSur = TTF_RenderUTF8_Blended(font, markedText, textColor);
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
CustomViewAccessibilityActivity.java 223 final int textColor = context.getResources().getColor(typedValue.resourceId);
224 mTextPaint.setColor(textColor);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
TextSampleEntry.java 271 int[] textColor = new int[]{0xff, 0xff, 0xff, 0xff};
279 textColor = new int[4];
280 textColor[0] = IsoTypeReader.readUInt8(in);
281 textColor[1] = IsoTypeReader.readUInt8(in);
282 textColor[2] = IsoTypeReader.readUInt8(in);
283 textColor[3] = IsoTypeReader.readUInt8(in);
293 IsoTypeWriter.writeUInt8(bb, textColor[0]);
294 IsoTypeWriter.writeUInt8(bb, textColor[1]);
295 IsoTypeWriter.writeUInt8(bb, textColor[2]);
296 IsoTypeWriter.writeUInt8(bb, textColor[3])
    [all...]
  /frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
AssistVisualizer.java 41 final int textColor;
56 this.textColor = node.getTextColor();
121 + " size=" + te.textSize + " color=#" + Integer.toHexString(te.textColor)
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
CustomBar.java 207 ResourceValue textColor = res.findItemInStyle(textStyle, "textColor",
209 textColor = res.resolveResValue(textColor);
210 if (textColor != null) {
212 textColor, bridgeContext, null);
  /packages/apps/Dialer/java/com/android/incallui/
DialpadFragment.java 166 int textColor = InCallPresenter.getInstance().getThemeColorManager().getPrimaryColor();
168 if (currentTextColor == textColor) {
175 ((TextView) dialpadKey.findViewById(R.id.dialpad_key_number)).setTextColor(textColor);
178 currentTextColor = textColor;
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
SimSelectorAvatarRequest.java 75 final int textColor = selected ? subColor : Color.WHITE;
96 paint.setColor(textColor);
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialTextsView.java 148 int textColor;
150 textColor = res.getColor(android.R.color.white);
152 textColor = res.getColor(R.color.numbers_text_color);
154 mPaint.setColor(textColor);
  /external/skia/src/gpu/text/
GrAtlasTextContext.cpp     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
KeyguardStatusBarView.java 437 @ColorInt int textColor = Utils.getColorAttr(mContext, R.attr.wallpaperTextColor);
438 @ColorInt int iconColor = Utils.getDefaultColor(mContext, Color.luminance(textColor) < 0.5 ?
441 float intensity = textColor == Color.WHITE ? 0 : 1;
ScrimController.java 502 int textColor = currentScrimColors.supportsDarkText() ? Color.BLACK : Color.WHITE;
504 float minOpacity = ColorUtils.calculateMinimumBackgroundAlpha(textColor, mainColor,
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
AppCompatTextHelper.java 116 ColorStateList textColor = null;
133 textColor = a.getColorStateList(R.styleable.TextAppearance_android_textColor);
158 textColor = a.getColorStateList(R.styleable.TextAppearance_android_textColor);
173 if (textColor != null) {
174 mView.setTextColor(textColor);
319 final ColorStateList textColor
321 if (textColor != null) {
322 mView.setTextColor(textColor);
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSimpleAdapter.java 273 int textColor;
275 textColor = mColorCalendarVisible;
277 textColor = mColorCalendarHidden;
279 calendarName.setTextColor(textColor);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
SmartReplyView.java 579 int textColor = NotificationColorUtil.ensureTextContrast(
589 setColors(child, backgroundColor, strokeColor, textColor, rippleColor);
593 private void setColors(Button button, int backgroundColor, int strokeColor, int textColor,
612 button.setTextColor(textColor);
  /frameworks/support/viewpager/src/main/java/androidx/viewpager/widget/
PagerTitleStrip.java 76 android.R.attr.textColor,
131 final int textColor = a.getColor(2, 0);
132 mPrevText.setTextColor(textColor);
133 mCurrText.setTextColor(textColor);
134 mNextText.setTextColor(textColor);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PreviewIconFactory.java 456 ResourceValue textColor = resources.findItemInTheme(resourceName);
457 return ResourceHelper.resolveColor(resources, textColor);
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
BatteryHistoryChart.java 237 ColorStateList textColor = null;
256 textColor = appearance.getColorStateList(attr);
282 paint.setColor(textColor.getDefaultColor());
429 mainTextAttrs.textColor = a.getColorStateList(attr);
430 headTextAttrs.textColor = a.getColorStateList(attr);
    [all...]
  /frameworks/base/core/java/android/widget/
SimpleMonthView.java 222 final ColorStateList textColor = ta.getColorStateList(R.styleable.TextAppearance_textColor);
223 if (textColor != null) {
224 final int enabledColor = textColor.getColorForState(ENABLED_STATE_SET, 0);
230 return textColor;
253 final ColorStateList textColor = applyTextAppearance(mDayPaint, resId);
254 if (textColor != null) {
255 mDayTextColor = textColor;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
PasswordTextView.java 132 int textColor = a.getColor(R.styleable.PasswordTextView_android_textColor, Color.WHITE);
133 mDrawPaint.setColor(textColor);
  /frameworks/base/core/java/android/app/
Notification.java     [all...]
  /prebuilts/devtools/tools/lib/
hierarchyviewer2lib.jar 

Completed in 1503 milliseconds

1 2 3 4 5 6