Searched defs:mThumbTintMode (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DAbsSeekBar.java44 private PorterDuff.Mode mThumbTintMode = null; field in class:AbsSeekBar
103 mThumbTintMode = Drawable.parseTintMode(a.getInt(
104 R.styleable.SeekBar_thumbTintMode, -1), mThumbTintMode);
262 mThumbTintMode = tintMode;
278 return mThumbTintMode;
290 mThumb.setTintMode(mThumbTintMode);
H A DSwitch.java97 private PorterDuff.Mode mThumbTintMode = null; field in class:Switch
257 if (mThumbTintMode != thumbTintMode) {
258 mThumbTintMode = thumbTintMode;
692 mThumbTintMode = tintMode;
706 return mThumbTintMode;
718 mThumbDrawable.setTintMode(mThumbTintMode);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSwitchCompat.java101 private PorterDuff.Mode mThumbTintMode = null; field in class:SwitchCompat
238 if (mThumbTintMode != thumbTintMode) {
239 mThumbTintMode = thumbTintMode;
660 mThumbTintMode = tintMode;
674 return mThumbTintMode;
686 DrawableCompat.setTintMode(mThumbDrawable, mThumbTintMode);

Completed in 90 milliseconds