Package com.theoplayer.android.api.pip
Interface PiPManager
-
- All Implemented Interfaces:
public interface PiPManagerThe 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 voidenterPiP(PiPType pipType)Requests the THEOplayer to enter Picture-in-Picture using the specified PiPType. abstract voidexitPiP()Requests the THEOplayer to exit Picture-in-Picture. abstract booleanisInPiP()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.
-
-
-
-