Unfortunately, this is a question that has not yet, and actually will probably never, get a satisfactory answer.
Cross-platform has always been a problem from the dawn of computers and will continue to be one.
The only way to be cross-platform is to strip your app to a bear minimum feature-wise because every single new feature you are going to add will make it harder(a lot) or impossible to work on another platform.
Examples Webview :
- Javascript performance on Android devices is horrendously slow so don't expect nice animation from it.
- Communication from html pages to native Android is buggy to the last degree.
Example OpenGl :
- iphone, android, blackberries do not use the same subset of opengl. I guess for a book reader this is not really a problem because they all have the same basic coverage. But you'll have to know and code the opengl launching for every single platform and work around bugs that are also platform dependent.
Example thirdparty sdks : You have to know that every time you add a third party sdk between you and the native platform you are actually adding the sdks' bugs to the native bugs. What usually looks good when you begin, end up being a mess when you are done trying to circumvent all these new bugs.
Now to answer your question : If you really want to go the cross platform route, you need to keep in mind that you will loose some functionalities along the way. Once you know about it, it's easier to let go :)
I went with the Html + webview and its doing ok for my purposes but is far from perfect.
If I had to do it again I would probably try a third party sdk like AIR from adobe which would be the best supported one(it's where the money is) but I hear some friends developers fighting with it quite a lot to achieve what they want. The results seem quite nice though : http://www.youtube.com/watch?v=PBBNHEKIJkM
A final word : Be careful with the read out loud feature, it might be illegal : http://marilynnbyerly.com/texttospeechande.html
Good luck.