Package-level declarations
Types
A Setting item that can be used to show some data in the UI or as a Button with the help of SettingsChangeListenerClient.
A setting that allows the user to select a single string from a list of options. Value can be accessed from Settings.getString
A setting that allows the user to select multiple items from a list of options. Values can be accessed from Settings.getStringSet
Represents a setting that can be clicked to perform an action. The SettingsProvider.getSettingItems will be called again after the action is performed.
A slider that allows the user to select a value from a range. Use allowOverride to allow the user to use values outside the range. Value can be accessed from Settings.getInt
A switch that allows the user to toggle a setting on or off. Value can be accessed from Settings.getBoolean
A setting that allows the user to input a string. Value can be accessed from Settings.getString, recommended to use String.isNullOrBlank.