Reflowable Layout
Bugs Fixed
For old RTL epub, Detecting some RTL direction in CSS.
In some devices, Video not displayed.
VideoListener interface newly added to sdk
package com.skytree.epub;
import android.view.View;
/**
* VideoListener interface is to handle Full screen video
*/
public interface VideoListener {
/**
* Called when video element in html goes to full screen.
* @param videoView View where video content played.
*/
void onVideoEntersFullScreen(View videoView);
/**
* Called when video element will exit from full screen mode.
*/
void onVideoExitsFromFullScreen();
}