0

Hello I want to open PDF file in Android app, I found this apv pdf reader in code.google and it is recommended by alot.

I checked the setup page and it is assume you are using Linux and I am Windows user + I am not good in configure libraries.

Can you show me how to configure it in windows and integrate in my app?
OR
if there is good tutorial for that?

Alex
  • 1,068
  • 8
  • 23
  • This shows how to create an Intent to open a PDF file programmatically. It will work with any PDF reader app. http://stackoverflow.com/questions/2883355/how-to-render-pdf-in-android – goto10 Oct 23 '11 at 21:59
  • it is required to open pdf inside app – Alex Oct 23 '11 at 22:40
  • I would recommend using a linux distro available. Just install it using v-Box or VMware Player. It is way too easier than using cygwin. I had experienced it before. – PH7 Oct 24 '11 at 00:41

1 Answers1

1

The instructions provided work for Windows as well. You need to install cygwin and then follow those instructions from a cygwin prompt to build the libraries. It looks like you'll also need to install Android NDK.

goto10
  • 4,370
  • 1
  • 22
  • 33
  • thanks but how to use this command in windows: ./configure --prefix="/target/dir" --host=arm-linux --disable-shared --enable-static – Alex Oct 24 '11 at 10:44
  • In Windows, install cygwin, and you then type that command into a cygwin command window (you don't type it into a windows/dos command window) – Steve Moseley Nov 09 '11 at 01:52