Home
last modified time | relevance | path

Searched refs:mView (Results 1 – 11 of 11) sorted by relevance

/appcompat/appcompat/src/main/java/androidx/appcompat/widget/
DAppCompatImageHelper.java40 private final @NonNull ImageView mView; field in AppCompatImageHelper
48 mView = view; in AppCompatImageHelper()
52 TintTypedArray a = TintTypedArray.obtainStyledAttributes(mView.getContext(), attrs, in loadFromAttributes()
54 ViewCompat.saveAttributeDataForStyleable(mView, mView.getContext(), in loadFromAttributes()
57 Drawable drawable = mView.getDrawable(); in loadFromAttributes()
63 drawable = AppCompatResources.getDrawable(mView.getContext(), id); in loadFromAttributes()
65 mView.setImageDrawable(drawable); in loadFromAttributes()
75 ImageViewCompat.setImageTintList(mView, in loadFromAttributes()
79 ImageViewCompat.setImageTintMode(mView, in loadFromAttributes()
90 final Drawable d = AppCompatResources.getDrawable(mView.getContext(), resId); in setImageResource()
[all …]
DAppCompatSeekBarHelper.java34 private final SeekBar mView; field in AppCompatSeekBarHelper
44 mView = view; in AppCompatSeekBarHelper()
51 TintTypedArray a = TintTypedArray.obtainStyledAttributes(mView.getContext(), attrs, in loadFromAttributes()
53 ViewCompat.saveAttributeDataForStyleable(mView, mView.getContext(), in loadFromAttributes()
58 mView.setThumb(drawable); in loadFromAttributes()
88 tickMark.setCallback(mView); in setTickMark()
89 DrawableCompat.setLayoutDirection(tickMark, mView.getLayoutDirection()); in setTickMark()
91 tickMark.setState(mView.getDrawableState()); in setTickMark()
96 mView.invalidate(); in setTickMark()
140 mTickMark.setState(mView.getDrawableState()); in applyTickMarkTint()
[all …]
DAppCompatCompoundButtonHelper.java36 private final @NonNull CompoundButton mView; field in AppCompatCompoundButtonHelper
46 mView = view; in AppCompatCompoundButtonHelper()
51 TintTypedArray.obtainStyledAttributes(mView.getContext(), attrs, in loadFromAttributes()
53 ViewCompat.saveAttributeDataForStyleable(mView, mView.getContext(), in loadFromAttributes()
61 mView.setButtonDrawable( in loadFromAttributes()
62 AppCompatResources.getDrawable(mView.getContext(), resourceId)); in loadFromAttributes()
74 mView.setButtonDrawable( in loadFromAttributes()
75 AppCompatResources.getDrawable(mView.getContext(), resourceId)); in loadFromAttributes()
79 CompoundButtonCompat.setButtonTintList(mView, in loadFromAttributes()
83 CompoundButtonCompat.setButtonTintMode(mView, in loadFromAttributes()
[all …]
DAppCompatBackgroundHelper.java34 private final @NonNull View mView; field in AppCompatBackgroundHelper
44 mView = view; in AppCompatBackgroundHelper()
49 TintTypedArray a = TintTypedArray.obtainStyledAttributes(mView.getContext(), attrs, in loadFromAttributes()
51 ViewCompat.saveAttributeDataForStyleable(mView, mView.getContext(), in loadFromAttributes()
59 .getTintList(mView.getContext(), mBackgroundResId); in loadFromAttributes()
65 ViewCompat.setBackgroundTintList(mView, in loadFromAttributes()
69 ViewCompat.setBackgroundTintMode(mView, in loadFromAttributes()
83 ? mDrawableManager.getTintList(mView.getContext(), resId) in onSetBackgroundResource()
123 final Drawable background = mView.getBackground(); in applySupportBackgroundTint()
134 mView.getDrawableState()); in applySupportBackgroundTint()
[all …]
DAppCompatCheckedTextViewHelper.java40 private final @NonNull CheckedTextView mView; field in AppCompatCheckedTextViewHelper
50 mView = view; in AppCompatCheckedTextViewHelper()
55 TintTypedArray.obtainStyledAttributes(mView.getContext(), attrs, in loadFromAttributes()
57 ViewCompat.saveAttributeDataForStyleable(mView, mView.getContext(), in loadFromAttributes()
66 mView.setCheckMarkDrawable( in loadFromAttributes()
67 AppCompatResources.getDrawable(mView.getContext(), resourceId)); in loadFromAttributes()
80 mView.setCheckMarkDrawable( in loadFromAttributes()
81 AppCompatResources.getDrawable(mView.getContext(), resourceId)); in loadFromAttributes()
85 CheckedTextViewCompat.setCheckMarkTintList(mView, in loadFromAttributes()
89 CheckedTextViewCompat.setCheckMarkTintMode(mView, in loadFromAttributes()
[all …]
DAppCompatTextHelper.java68 private final @NonNull TextView mView; field in AppCompatTextHelper
87 mView = view; in AppCompatTextHelper()
88 mAutoSizeTextHelper = new AppCompatTextViewAutoSizeHelper(mView); in AppCompatTextHelper()
93 final Context context = mView.getContext(); in loadFromAttributes()
99 ViewCompat.saveAttributeDataForStyleable(mView, mView.getContext(), in loadFromAttributes()
136 mView.getTransformationMethod() instanceof PasswordTransformationMethod; in loadFromAttributes()
204 mView.setTextSize(TypedValue.COMPLEX_UNIT_PX, 0.0f); in loadFromAttributes()
212 mView.setTextColor(textColor); in loadFromAttributes()
215 mView.setHintTextColor(textColorHint); in loadFromAttributes()
218 mView.setLinkTextColor(textColorLink); in loadFromAttributes()
[all …]
DAppCompatProgressBarHelper.java46 private final ProgressBar mView; field in AppCompatProgressBarHelper
51 mView = view; in AppCompatProgressBarHelper()
55 TintTypedArray a = TintTypedArray.obtainStyledAttributes(mView.getContext(), attrs, in loadFromAttributes()
60 mView.setIndeterminateDrawable(tileifyIndeterminate(drawable)); in loadFromAttributes()
65 mView.setProgressDrawable(tileify(drawable, false)); in loadFromAttributes()
DAppCompatEmojiTextHelper.java37 private final @NonNull TextView mView; field in AppCompatEmojiTextHelper
41 mView = view; in AppCompatEmojiTextHelper()
51 Context context = mView.getContext(); in loadFromAttributes()
DAppCompatEmojiEditTextHelper.java40 private final @NonNull EditText mView; field in AppCompatEmojiEditTextHelper
50 mView = view; in AppCompatEmojiEditTextHelper()
62 Context context = mView.getContext(); in loadFromAttributes()
/appcompat/appcompat/src/main/java/androidx/appcompat/app/
DAlertController.java75 private View mView; field in AlertController
273 mView = null; in setView()
282 mView = view; in setView()
292 mView = view; in setView()
642 if (mView != null) { in setupCustomContent()
643 customView = mView; in setupCustomContent()
894 public View mView; field in AlertController.AlertParams
969 if (mView != null) { in apply()
971 dialog.setView(mView, mViewSpacingLeft, mViewSpacingTop, mViewSpacingRight, in apply()
974 dialog.setView(mView); in apply()
DAlertDialog.java882 P.mView = null; in setView()
903 P.mView = view; in setView()
935 P.mView = view; in setView()