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.java355 private final IconState mIconState; field in LockscreenFragment.ShortcutButton
359 mIconState = new IconState(); in ShortcutButton()
360 mIconState.isVisible = true; in ShortcutButton()
361 mIconState.drawable = shortcut.icon.loadDrawable(context).mutate(); in ShortcutButton()
362 mIconState.contentDescription = mShortcut.label; in ShortcutButton()
365 mIconState.drawable = new ScalingDrawableWrapper(mIconState.drawable, in ShortcutButton()
366 size / (float) mIconState.drawable.getIntrinsicWidth()); in ShortcutButton()
367 mIconState.tint = false; in ShortcutButton()
372 return mIconState; in getIcon()
383 private final IconState mIconState; field in LockscreenFragment.ActivityButton
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardBottomAreaView.java820 private IconState mIconState = new IconState(); field in KeyguardBottomAreaView.DefaultLeftButton
826 mIconState.isVisible = mUserSetupComplete; in getIcon()
828 mIconState.drawable = mContext.getDrawable(R.drawable.ic_mic_26dp); in getIcon()
830 mIconState.drawable = mLeftAssistIcon; in getIcon()
832 mIconState.contentDescription = mContext.getString( in getIcon()
835 mIconState.isVisible = mUserSetupComplete && isPhoneVisible(); in getIcon()
836 mIconState.drawable = mContext.getDrawable(R.drawable.ic_phone_24dp); in getIcon()
837 mIconState.contentDescription = mContext.getString( in getIcon()
840 return mIconState; in getIcon()
851 private IconState mIconState = new IconState(); field in KeyguardBottomAreaView.DefaultRightButton
[all …]