我找到了一个使用 epublib 在 android 中阅读 epub 书籍的解决方案。我能看懂这本书的字幕。但是我没有找到逐行阅读内容的方法。我怎样才能做到这一点?
获取书名的示例代码是
private void logTableOfContents(List<TOCReference> tocReferences, int depth) {
if (tocReferences == null) {
return;
}
for (TOCReference tocReference : tocReferences) {
StringBuilder tocString = new StringBuilder();
StringBuilder tocHref=new StringBuilder();
for (int i = 0; i < depth; i++) {
tocString.append("\t");
tocHref.append("\t");
}
tocString.append(tocReference.getTitle());
tocHref.append(tocReference.getCompleteHref());
Log.e("Sub Titles", tocString.toString());
Log.e("Complete href",tocHref.toString());
//logTableOfContents(tocReference.getChildren(), depth + 1);
}
}
从http://www.siegmann.nl/epublib/android得到这段代码
怎么能看懂书的故事...