Is there way to print?
Is there way to print?
Specifically, I would like ability to print the pdf I am showing in set_webview.
-
Paul
Re: Is there way to print?
If the Web View is set to display the navigation tool bar, this will present a print option on the tool bar.
Example:
General Note about PDF files:
Android devices cannot display .pdf files in a webview, but if a pdf viewer is installed they can download them and the file can then be displayed by the PDF viewer. See shipped RDMLX example LREX0056 (RPG example is EXAM0056) for a demonstration of handling PDF files on Android devices.
Example:
Code: Select all
#Com_Owner.Set_WebView Name(PDFVIEWER) Layout_Col(1) Layout_Row(7) Url(#PDFFile) Show_Navigation(True)
Android devices cannot display .pdf files in a webview, but if a pdf viewer is installed they can download them and the file can then be displayed by the PDF viewer. See shipped RDMLX example LREX0056 (RPG example is EXAM0056) for a demonstration of handling PDF files on Android devices.
Re: Is there way to print?
Thanks that works great.
WiIl there be any headway coming on Android PDF viewing native within longrange?
We do not want the user to have to leave our app.
WiIl there be any headway coming on Android PDF viewing native within longrange?
We do not want the user to have to leave our app.
-
tsupartono
- Posts: 289
- Joined: Wed Apr 18, 2012 10:21 am
Re: Is there way to print?
Not at the moment, but we will put this into consideration.
Re: Is there way to print?
Any android pdf advances yet?
Re: Is there way to print?
PDF is still not supported by Android webview, so Android users need to use PDF viewer to view PDF.
Re: Is there way to print?
Is this something Lansa can enhance? This is a real downer for out customers with android devices signing documents (pdf's).
Re: Is there way to print?
Sorry for the inconvenience. It's quite difficult to enhance the system webview to have PDF support. So a common way on Android system is to open pdf in another app.
Re: Is there way to print?
we are signing legal documents. Because you can't make this happen on android (like iphone) we are forced to give customer message that it is not supporeted on android and sign a blank page ...
Can you enhance this to make it work?
Can you enhance this to make it work?
Re: Is there way to print?
Is the PDF document readable? If yes, probably you can try some third party services, like Google Docs api, to display an online PDF. It looks like
Please do a research thoroughly see if there are any charges or usage limitations (like bandwidth limit). We make no guarantee for any issues related to 3rd party service.
Thanks
Code: Select all
http://drive.google.com/viewerng/viewer?embedded=true&url=YOUR PDF URL
Thanks