Home
last modified time | relevance | path

Searched refs:mTextColor (Results 1 – 9 of 9) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DKeyDrawParams.java38 public int mTextColor; field in KeyDrawParams
67 mTextColor = copyFrom.mTextColor; in KeyDrawParams()
104 mTextColor = selectColor(attr.mTextColor, mTextColor); in updateParams()
DKeyVisualAttributes.java43 public final int mTextColor; field in KeyVisualAttributes
128 mTextColor = keyAttr.getColor(R.styleable.Keyboard_Key_keyTextColor, 0); in KeyVisualAttributes()
/packages/services/Car/car_product/car_ui_portrait/apps/CarUiPortraitLauncher/src/com/android/car/portraitlauncher/panel/
DBackgroundSurfaceView.java44 private int mTextColor; field in BackgroundSurfaceView
76 mTextColor = getResources().getColor(R.color.car_on_background, getContext().getTheme()); in setupSurfaceView()
106 paint.setColor(mTextColor); in drawSurface()
140 mTextColor = getResources().getColor(R.color.car_on_background, in refresh()
/packages/apps/Messaging/src/com/android/messaging/ui/
DViewPagerTabs.java60 final ColorStateList mTextColor; field in ViewPagerTabs
124 mTextColor = a.getColorStateList(2); in ViewPagerTabs()
176 if (mTextColor != null) { in addTab()
177 textView.setTextColor(mTextColor); in addTab()
/packages/apps/Dialer/java/com/android/contacts/common/list/
DViewPagerTabs.java68 final ColorStateList mTextColor; field in ViewPagerTabs
96 mTextColor = a.getColorStateList(2); in ViewPagerTabs()
175 if (mTextColor != null) { in addTab()
176 textView.setTextColor(mTextColor); in addTab()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
DIconView.java42 private int mTextColor; field in IconView
71 mTextColor = res.getColor(R.color.filtershow_categoryview_text); in setup()
143 return mTextColor; in getTextColor()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
DStateView.java66 private int mTextColor; field in StateView
82 mTextColor = res.getColor(R.color.filtershow_stateview_text); in StateView()
119 mPaint.setColor(mTextColor); in drawText()
/packages/apps/Launcher3/src/com/android/launcher3/
DBubbleTextView.java171 private int mTextColor; field in BubbleTextView
812 mTextColor = color; in setTextColor()
819 mTextColor = colors.getDefaultColor(); in setTextColor()
854 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha)); in getModifiedColor()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
DKey.java668 return isShiftedLetterActivated() ? params.mTextInactivatedColor : params.mTextColor; in selectTextColor()