I have a epub file. I need to unzip and parse the epub file and render it in Webview. Is there a step by step tutorial somewhere.
If you want to use stage web view for rendering epub simply pass the epub directly....The android native web kit browser supports almost all formats for rendering.
var stageWebView:StageWebView = new StageWebView;
stageWebView.stage = stage;
stageWebView.viewPort = new Rectangle(0, 0, stage.stageWidth, stage.stageHeight-100);
stageWebView.loadURL("http://localhost/eboard.pdf"); // use any path
You dont require any zip/unzip or parsing....but in case you do not go for web view then you might need that...