SkyEpub 4.4.6 for Android Released

Reflowable Layout

New 3 Functions Added

// make engine not to send any event to iframe
// if iframe is clicked, onIFrameClicked will be fired with source of iframe
// when false is set, user interaction on this element will be disabled.
// By Using that source of iframe, you can load the content of iframe in your own webView or another browser.
rv.setSendingEventsToIFrameEnabled(false);

// make engine send any event to video(tag) or not
// when false is set, user interaction on this element will be disabled.
// if video tag is clicked, onVideoClicked will be fired with source of iframe
// By Using that source of video, you can load the content of video in your own media controller or another browser.
rv.setSendingEventsToVideoEnabled(true);

// make engine send any event to video(tag) or not
// when false is set, user interaction on this element will be disabled.
// if video tag is clicked, onVideoClicked will be fired with source of iframe
// By Using that source of video, you can load the content of video in your own media controller or another browser.
rv.setSendingEventsToAudioEnabled(true);