Home
last modified time | relevance | path

Searched refs:mIconState (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
DLockscreenFragment.java347 private final IconState mIconState; field in LockscreenFragment.ShortcutButton
351 mIconState = new IconState(); in ShortcutButton()
352 mIconState.isVisible = true; in ShortcutButton()
353 mIconState.drawable = shortcut.icon.loadDrawable(context).mutate(); in ShortcutButton()
354 mIconState.contentDescription = mShortcut.label; in ShortcutButton()
357 mIconState.drawable = new ScalingDrawableWrapper(mIconState.drawable, in ShortcutButton()
358 size / (float) mIconState.drawable.getIntrinsicWidth()); in ShortcutButton()
359 mIconState.tint = false; in ShortcutButton()
364 return mIconState; in getIcon()
375 private final IconState mIconState; field in LockscreenFragment.ActivityButton
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardBottomAreaView.java770 private IconState mIconState = new IconState(); field in KeyguardBottomAreaView.DefaultLeftButton
778 mIconState.isVisible = mUserSetupComplete && showAffordance; in getIcon()
780 mIconState.drawable = mContext.getDrawable(R.drawable.ic_mic_26dp); in getIcon()
782 mIconState.drawable = mLeftAssistIcon; in getIcon()
784 mIconState.contentDescription = mContext.getString( in getIcon()
787 mIconState.isVisible = mUserSetupComplete && showAffordance && isPhoneVisible(); in getIcon()
788 mIconState.drawable = mContext.getDrawable( in getIcon()
790 mIconState.contentDescription = mContext.getString( in getIcon()
793 return mIconState; in getIcon()
804 private IconState mIconState = new IconState(); field in KeyguardBottomAreaView.DefaultRightButton
[all …]