I need to write a program for an e-book. Basically I would be linking a word on a page of this e-book to either an image or animation. I know if I just start writing code, I will probably be recreating the wheel. Hence, is there Android code online that is basically a template for e-books? I have searched around and found nothing. Also, because I will have to link animations to text, will I have to code every page individually? I am just confused on how this all works.

I have bought an Android book and I am reading it, but it appears that they don't really go into this at all. If someone could point me in the right direction, it will be greatly appreciated.

link|improve this question

Are you creating an actual ebook (like an ePub or something that's going to go in the Google eBookstore or Kindle) or are you creating an app that you want to behave in a book-like manner? They're two very different things. – Doug Stephen Jun 24 '11 at 19:39
I don't really know, It the first of its kind. It is an interactive ebook. Therefore how do you creating an app that you want to behave in a book-like manner? – TheChes44 Jun 24 '11 at 20:53
1  
The ePub format supports JavaScript, HTML, and CSS; you can create interactive ebooks without having to create a full-blown app. This would allow you to distribute your book to a much larger audience. That's why I asked. – Doug Stephen Jun 25 '11 at 0:19
But, I need to create the full blown app though. Thats the problem. – TheChes44 Jul 1 '11 at 7:07
feedback

2 Answers

up vote 3 down vote accepted
+50

I have seen a lot of interactive books done with cocos2d-iphone. The transitions are very easy to achieve.

If you need that kind of animations and interactions you should check cocos2d-x. Cocos2d-x is the c++ port which works in Android.

EDIT: Some links you should check:

link|improve this answer
I mean,I know it can be achieved in Xcode. What about Android? – TheChes44 Jun 27 '11 at 14:44
I guess. Thanks for the help. – TheChes44 Jun 27 '11 at 14:44
@TheChes44: cocos2d-x works in android. – Macarse Jun 27 '11 at 14:59
Where would I need to look in the cocos2d-iphone, in the api to find what I need? – TheChes44 Jul 1 '11 at 7:09
@TheChes44: I just added some links. – Macarse Jul 1 '11 at 15:25
feedback

WebView might be what you're looking for. It supports HTML and links you could use for page links. Use WebSettings to enable Javascript, and you can set up a JavascriptInterface to view images/video when a link is clicked.

You might also look into the open source CoolReader source code to see how they did it, and perhaps add features to their code instead of reinventing the wheel.. http://coolreader.org/e-index.htm

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.