pub struct KioskCustomization {
pub device_settings: Option<String>,
pub power_button_actions: Option<String>,
pub status_bar: Option<String>,
pub system_error_warnings: Option<String>,
pub system_navigation: Option<String>,
}Expand description
Settings controlling the behavior of a device in kiosk mode. To enable kiosk mode, set kioskCustomLauncherEnabled to true or specify an app in the policy with installType KIOSK.
This type is not used in any activity, and only used as part of another schema.
Fields§
§device_settings: Option<String>Specifies whether the Settings app is allowed in kiosk mode.
Sets the behavior of a device in kiosk mode when a user presses and holds (long-presses) the Power button.
status_bar: Option<String>Specifies whether system info and notifications are disabled in kiosk mode.
system_error_warnings: Option<String>Specifies whether system error dialogs for crashed or unresponsive apps are blocked in kiosk mode. When blocked, the system will force-stop the app as if the user chooses the “close app” option on the UI.
Specifies which navigation features are enabled (e.g. Home, Overview buttons) in kiosk mode.
Trait Implementations§
Source§impl Clone for KioskCustomization
impl Clone for KioskCustomization
Source§fn clone(&self) -> KioskCustomization
fn clone(&self) -> KioskCustomization
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more