Implement dream complication settings.

This component allows the user to select dream complications to
enable/disable.

Bug: 215703483
Test: locally on device
Change-Id: I03dd9d67b4aeb3f41885b42391d97c18bd7465f6
This commit is contained in:
Lucas Silva
2022-01-27 15:38:50 +00:00
parent 5a7fc5d613
commit f0f7adc612
8 changed files with 178 additions and 21 deletions

View File

@@ -25,11 +25,14 @@ interface IDreamItem {
void onItemClicked();
void onCustomizeClicked();
default void onCustomizeClicked() {
}
Drawable getPreviewImage();
boolean isActive();
boolean allowCustomization();
default boolean allowCustomization() {
return false;
}
}