Home
last modified time | relevance | path

Searched refs:currentStyle (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Settings/src/com/android/settings/inputmethod/
DPointerFillStylePreference.java70 int currentStyle = getPreferenceDataStore().getInt(Settings.System.POINTER_FILL_STYLE, in onBindViewHolder() local
73 currentStyle); in onBindViewHolder()
75 currentStyle); in onBindViewHolder()
77 currentStyle); in onBindViewHolder()
79 currentStyle); in onBindViewHolder()
81 currentStyle); in onBindViewHolder()
85 int currentStyle) { in initStyleButton() argument
95 button.setForeground(getForegroundDrawable(style, currentStyle)); in initStyleButton()
138 private Drawable getForegroundDrawable(int style, int currentStyle) { in getForegroundDrawable() argument
145 checkMark.setAlpha(style == currentStyle ? 255 : 0); in getForegroundDrawable()
/packages/apps/ThemePicker/src/com/android/customization/model/color/
DColorOption.java81 String currentStyle = colorManager.getCurrentStyle(); in isActive() local
82 if (TextUtils.isEmpty(currentStyle)) { in isActive()
83 currentStyle = Style.TONAL_SPOT.toString(); in isActive()
85 boolean isCurrentStyle = TextUtils.equals(getStyle().toString(), currentStyle); in isActive()
/packages/apps/ThemePicker/src/com/android/customization/picker/color/data/repository/
DColorPickerRepositoryImpl.kt146 val styleOrNull = colorManager.currentStyle in <lambda>()
/packages/apps/ThemePicker/tests/robotests/src/com/android/customization/model/color/
DColorCustomizationManagerTest.kt90 assertThat(manager.currentStyle).isEqualTo(style.toString()) in testParseSettings()