I'm busy with an app to view PDFs on an Android app built using Xamarin's Mono for Android. Is there a "CGPDFDocument" type of class in Mono for Android? Thanks
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Android doesn't support PDFs in the same built-in way that iOS does. If you need in-app PDF viewing, then there are some open source libraries available - see Android - Load PDF / PDF Viewer for some possible Java solutions Alternatively, if your app can get away with passing the file out to an external app (e.g. Adobe Reader) then I've used this Intent code in the past:
where targetPath was typically a path on a shared SD card. |
|||
|
|