我找到了一个使用epublib在android中阅读epub书籍的解决方案.我能够阅读这本书的字幕.但我没有找到一种方法来逐行阅读内容.我该如何实现这一目标?
private void logTableOfContents(Listtochref=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获得此代码
我怎样才能得到这本书的故事……