OnPictureInPictureUiStateChangedProvider


public interface OnPictureInPictureUiStateChangedProvider

Known direct subclasses
PictureInPictureProvider

Provider interface to support PiP (Picture-in-Picture) functionalities.

Known indirect subclasses
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.

ComponentActivity

Base class for activities that enables composition of higher level components.

FragmentActivity

Base class for activities that want to use the support-based Fragments.

LauncherActivity

This class handles providing the right launcher activity when running native applications and Car App Library applications.


Interface for components that can dispatch calls from Activity.onPictureInPictureUiStateChanged.

Summary

Public methods

abstract void

Add a new listener that will get a callback associated with Activity.onPictureInPictureUiStateChanged with the new PictureInPictureUiStateCompat.

abstract void

Remove a previously added listener.

Public methods

addOnPictureInPictureUiStateChangedListener

abstract void addOnPictureInPictureUiStateChangedListener(
    @NonNull Consumer<@NonNull PictureInPictureUiStateCompat> listener
)

Add a new listener that will get a callback associated with Activity.onPictureInPictureUiStateChanged with the new PictureInPictureUiStateCompat.

Parameters
@NonNull Consumer<@NonNull PictureInPictureUiStateCompat> listener

The listener that should be called whenever Activity.onPictureInPictureUiStateChanged was called.

removeOnPictureInPictureUiStateChangedListener

abstract void removeOnPictureInPictureUiStateChangedListener(
    @NonNull Consumer<@NonNull PictureInPictureUiStateCompat> listener
)

Remove a previously added listener. It will not receive any future callbacks.

Parameters
@NonNull Consumer<@NonNull PictureInPictureUiStateCompat> listener

The listener previously added with addOnPictureInPictureUiStateChangedListener that should be removed.