Package com.theoplayer.android.api.pip
Interface PiPManager
-
- All Implemented Interfaces:
public interface PiPManager
The Picture-in-Picture manager which can be used to manage and gather information related to the PiP state of the player.
-
-
Method Summary
Modifier and Type Method Description abstract void
enterPiP(PiPType pipType)
Requests the THEOplayer to enter Picture-in-Picture using the specified PiPType. abstract void
exitPiP()
Requests the THEOplayer to exit Picture-in-Picture. abstract boolean
isInPiP()
Returns whether the THEOplayerView is in Picture-in-Picture. -
-
Method Detail
-
enterPiP
abstract void enterPiP(PiPType pipType)
Requests the THEOplayer to enter Picture-in-Picture using the specified PiPType.
- Parameters:
pipType
- The PiPType.
-
exitPiP
abstract void exitPiP()
Requests the THEOplayer to exit Picture-in-Picture.
-
isInPiP
abstract boolean isInPiP()
Returns whether the THEOplayerView is in Picture-in-Picture.
-
-
-
-