Home
last modified time | relevance | path

Searched refs:ColorOption (Results 1 – 3 of 3) sorted by relevance

/aosp12/packages/apps/ThemePicker/src/com/android/customization/model/theme/custom/
H A DColorOptionsProvider.java44 import com.android.customization.model.theme.custom.ThemeComponentOption.ColorOption;
54 public class ColorOptionsProvider extends ThemeComponentOptionProvider<ColorOption> {
105 ColorOption option = new ColorOption(overlayPackage, label, lightColor, darkColor); in loadOptions()
136 ColorOption option = new ColorOption(null, in addDefault()
H A DThemeComponentOption.java291 public static class ColorOption extends ThemeComponentOption { class in ThemeComponentOption
333 ColorOption(String packageName, String label, @ColorInt int lightColor, in ColorOption() method in ThemeComponentOption.ColorOption
/aosp12/packages/apps/ThemePicker/src/com/android/customization/picker/theme/
H A DCustomThemeActivity.java46 import com.android.customization.model.theme.custom.ThemeComponentOption.ColorOption;
369 private class ColorStep extends ComponentStep<ColorOption> {
371 protected ColorStep(ThemeComponentOptionProvider<ColorOption> provider, in ColorStep()