Home | History | Annotate | Download | only in preference

Lines Matching defs:mIconResId

129      * mIconResId is overridden by mIcon, if mIcon is specified.
131 private int mIconResId;
267 mIconResId = TypedArrayUtils.getResourceId(a, R.styleable.Preference_icon,
595 if (mIconResId != 0 || mIcon != null) {
597 mIcon = ContextCompat.getDrawable(getContext(), mIconResId);
739 mIconResId = 0;
752 mIconResId = iconResId;
762 if (mIcon == null && mIconResId != 0) {
763 mIcon = ContextCompat.getDrawable(mContext, mIconResId);