public interface APSMediaPlayerActionDelegate
APSMediaPlayer actionDelegate. The object implementing APSMediaPlayer will receive information about the URLs that need to be executed as the user interacts with the player.| Modifier and Type | Method and Description |
|---|---|
boolean |
canRespondTo(java.lang.String url)
Returns a Boolean value indicating whether the receiver is able to interpret and react to the given input
URL. |
boolean |
respondTo(java.lang.String url)
If the
APSMediaPlayerActionDelegate implementing object returns true from the canRespondTo method for a certain URL, this method will be triggered to request effective execution. |
boolean canRespondTo(java.lang.String url)
URL.url - The URL that needs to be launched.true if the object can interpret and react to the given input URL, false otherwise.boolean respondTo(java.lang.String url)
APSMediaPlayerActionDelegate implementing object returns true from the canRespondTo method for a certain URL, this method will be triggered to request effective execution.url - The URL that needs to be launched.