mertakdut / EpubParser

Parses .epub files, provides seperation page by page.
Apache License 2.0
118 stars 27 forks source link

Click on table of contents Gives error #13

Closed Redman1037 closed 8 years ago

Redman1037 commented 8 years ago

how can i navigate to specified page on clicking from table of content , it gives me issue and ,when i unzip the epub file and like its location like this webView.loadDataWithBaseURL(location, sectionContent, "text/html", "UTF-8", null); it works but it loads full book again in vertical scrolling, not as sections.

how do i redirect to correct page index ( bookSection = reader.readSection(pageIndex); ) on clicking on item from table of contents?

mertakdut commented 8 years ago

This library aims to reduce the memory consumption by avoid loading the whole content into memory. But in the future, I plan to add the needed implementation. Though, I guess it may require some time and more resource to find the link's position.

Currently internal links and navigating to a certain page is not available.

This issue is a duplicate of Issue #10 - Skip to specified page.