0

I want write an application which shows an PDF with some other content on it, like Video and image.

Generically I want shows an pdf with some other View on it. I am concern about PDF, I read some article which explaine how to show an PDF but I want show an PDF with some other stuff.

Do you recommend me some solution or a right way?

Thanks a lot.

pedr0
  • 2,941
  • 6
  • 32
  • 46

1 Answers1

1

If you can render a PDF into your own View (and not launch a 3rd party Activity), you can just wrap that view into a FrameLayout, and draw whatever you want on top of it.

Matt
  • 3,837
  • 26
  • 29
  • How can I that? Could you get me a link at some article which cover this topic? – pedr0 Jan 19 '11 at 15:57
  • I would like read some stuff about how render a PDF on a View – pedr0 Jan 19 '11 at 16:43
  • For FrameLayout, maybe read this: http://www.itgalary.com/forum_posts.asp?TID=1016 For a PDF View, maybe read up on this question: http://stackoverflow.com/questions/2947517/android-pdf-reader-from-scratch – Matt Jan 19 '11 at 16:44