public static enum FlutterActivityLaunchConfigs.BackgroundMode extends Enum<FlutterActivityLaunchConfigs.BackgroundMode>
Activity, either opaque or transparent.| Enum Constant and Description |
|---|
opaque
Indicates a FlutterActivity with an opaque background.
|
transparent
Indicates a FlutterActivity with a transparent background.
|
| Modifier and Type | Method and Description |
|---|---|
static FlutterActivityLaunchConfigs.BackgroundMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlutterActivityLaunchConfigs.BackgroundMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlutterActivityLaunchConfigs.BackgroundMode opaque
public static final FlutterActivityLaunchConfigs.BackgroundMode transparent
public static FlutterActivityLaunchConfigs.BackgroundMode[] values()
for (FlutterActivityLaunchConfigs.BackgroundMode c : FlutterActivityLaunchConfigs.BackgroundMode.values()) System.out.println(c);
public static FlutterActivityLaunchConfigs.BackgroundMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null