Android Question No application can perform this action

DonManfred

Expert
Licensed User
Longtime User
I´m trying to open a PDF via a http-URL from our server.
Adobe Reader 11 is installed on the devices but if i want to open the URL with

B4X:
Dim i As Intent 'Requires a reference to the Phone library
i.Initialize(i.ACTION_VIEW, "http://domain.tld/attachments/pdf/"&Value) ' Value is the name of the PDF 
i.SetType("application/pdf")
i.WrapAsIntentChooser("Choose PDF Viewer")
StartActivity(i)

i get the message "No application can perform this action". Open the URL in a browser on my PC opens that PDF with no problem.

What do i wrong here? Help needed :)
 
Top