OnConfigurationChangedProvider
interface OnConfigurationChangedProvider
ComponentActivity |
Base class for activities that enables composition of higher level components. |
AppCompatActivity |
Base class for activities that wish to use some of the newer platform features on older Android devices. |
BaseCarAppActivity |
Core logic for CarAppLibrary Activity interaction with a host. |
CarAppActivity |
The class representing a car app activity in the main display. |
FragmentActivity |
Base class for activities that want to use the support-based |
LauncherActivity |
This class handles providing the right launcher activity when running native applications and Car App Library applications. |
PreviewActivity |
Activity used to run |
Interface for components that can dispatch calls from ComponentCallbacks.onConfigurationChanged.
Summary
Public functions |
|
|---|---|
Unit |
addOnConfigurationChangedListener(listener: Consumer<Configuration>)Add a new listener that will get a callback associated with |
Unit |
Remove a previously added listener. |
Public functions
addOnConfigurationChangedListener
fun addOnConfigurationChangedListener(listener: Consumer<Configuration>): Unit
Add a new listener that will get a callback associated with ComponentCallbacks.onConfigurationChanged with the new Configuration.
| Parameters | |
|---|---|
listener: Consumer<Configuration> |
The listener that should be called whenever { |
removeOnConfigurationChangedListener
fun removeOnConfigurationChangedListener(listener: Consumer<Configuration>): Unit
Remove a previously added listener. It will not receive any future callbacks.
| Parameters | |
|---|---|
listener: Consumer<Configuration> |
The listener previously added with |