Home
last modified time | relevance | path

Searched refs:mBackgroundTint (Results 1 – 4 of 4) sorted by relevance

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DAppCompatBackgroundHelper.java37 private TintInfo mBackgroundTint; field in AppCompatBackgroundHelper
90 if (mBackgroundTint == null) { in setSupportBackgroundTintList()
91 mBackgroundTint = new TintInfo(); in setSupportBackgroundTintList()
93 mBackgroundTint.mTintList = tint; in setSupportBackgroundTintList()
94 mBackgroundTint.mHasTintList = true; in setSupportBackgroundTintList()
99 return mBackgroundTint != null ? mBackgroundTint.mTintList : null; in getSupportBackgroundTintList()
103 if (mBackgroundTint == null) { in setSupportBackgroundTintMode()
104 mBackgroundTint = new TintInfo(); in setSupportBackgroundTintMode()
106 mBackgroundTint.mTintMode = tintMode; in setSupportBackgroundTintMode()
107 mBackgroundTint.mHasTintMode = true; in setSupportBackgroundTintMode()
[all …]
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
DViewBindingObject.java25 private int mBackgroundTint = 0xFF00FF00; field in ViewBindingObject
70 return mBackgroundTint; in getBackgroundTint()
156 mBackgroundTint = 0xFFFF0000; in changeValues()
/frameworks/support/design/src/android/support/design/widget/
DFloatingActionButton.java129 private ColorStateList mBackgroundTint; field in FloatingActionButton
162 mBackgroundTint = a.getColorStateList(R.styleable.FloatingActionButton_backgroundTint); in FloatingActionButton()
179 getImpl().setBackgroundDrawable(mBackgroundTint, mBackgroundTintMode, in FloatingActionButton()
242 return mBackgroundTint; in getBackgroundTintList()
253 if (mBackgroundTint != tint) { in setBackgroundTintList()
254 mBackgroundTint = tint; in setBackgroundTintList()
/frameworks/base/core/java/android/view/
DView.java3978 private TintInfo mBackgroundTint; field in View
5055 if (mBackgroundTint == null) {
5056 mBackgroundTint = new TintInfo();
5058 mBackgroundTint.mTintList = a.getColorStateList(
5060 mBackgroundTint.mHasTintList = true;
5064 if (mBackgroundTint == null) {
5065 mBackgroundTint = new TintInfo();
5067 mBackgroundTint.mTintMode = Drawable.parseTintMode(a.getInt(
5069 mBackgroundTint.mHasTintMode = true;
20468 if (mBackgroundTint == null) {
[all …]