Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SettingsLib/BannerMessagePreference/src/com/android/settingslib/widget/
H A DBannerMessagePreference.java49 public enum AttentionLevel { enum in BannerMessagePreference
61 AttentionLevel(int attrValue, @ColorRes int backgroundColorResId, in AttentionLevel() method in BannerMessagePreference.AttentionLevel
68 static AttentionLevel fromAttr(int attrValue) { in fromAttr()
69 for (AttentionLevel level : values()) { in fromAttr()
97 private AttentionLevel mAttentionLevel = AttentionLevel.HIGH;
132 mAttentionLevel = AttentionLevel.fromAttr(mAttentionLevelValue); in init()
327 public BannerMessagePreference setAttentionLevel(AttentionLevel attentionLevel) { in setAttentionLevel()
/aosp12/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/widget/
H A DBannerMessagePreferenceTest.java440 mBannerPreference.setAttentionLevel(BannerMessagePreference.AttentionLevel.HIGH); in setAttentionLevel_whenAtLeastS_whenHighAttention_setsHighTheme()
458 mBannerPreference.setAttentionLevel(BannerMessagePreference.AttentionLevel.MEDIUM); in setAttentionLevel_whenAtLeastS_whenMedAttention_setsMediumTheme()
476 mBannerPreference.setAttentionLevel(BannerMessagePreference.AttentionLevel.LOW); in setAttentionLevel_whenAtLeastS_whenLowAttention_setsLowTheme()