Searched defs:mBackgroundTint (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAppCompatBackgroundHelper.java37 private TintInfo mBackgroundTint; field in class:AppCompatBackgroundHelper
90 if (mBackgroundTint == null) {
91 mBackgroundTint = new TintInfo();
93 mBackgroundTint.mTintList = tint;
94 mBackgroundTint.mHasTintList = true;
99 return mBackgroundTint != null ? mBackgroundTint.mTintList : null;
103 if (mBackgroundTint == null) {
104 mBackgroundTint = new TintInfo();
106 mBackgroundTint
[all...]
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DViewBindingObject.java25 private int mBackgroundTint = 0xFF00FF00; field in class:ViewBindingObject
70 return mBackgroundTint;
156 mBackgroundTint = 0xFFFF0000;
/frameworks/support/design/src/android/support/design/widget/
H A DFloatingActionButton.java129 private ColorStateList mBackgroundTint; field in class:FloatingActionButton
162 mBackgroundTint = a.getColorStateList(R.styleable.FloatingActionButton_backgroundTint);
179 getImpl().setBackgroundDrawable(mBackgroundTint, mBackgroundTintMode,
242 return mBackgroundTint;
253 if (mBackgroundTint != tint) {
254 mBackgroundTint = tint;
/frameworks/base/core/java/android/view/
H A DView.java3978 private TintInfo mBackgroundTint; field in class: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
[all...]

Completed in 547 milliseconds