Hi Erel,
pdf file is loaded into the device. So, it should be opened by the application and intercept the clicks and let the user do something to proceedings. In practice, the pdf file is a catalog and when the user clicks on the image should open a card product made with the app.
Thanks to the library pdfview I was able to open the file (although it is very slow), but was not able to handle events.
I hope I was clear.
Do you have any advice?
thanks
ps. this is the code that I used for open the file pdf.
Dim aIntent As Intent
Try
aIntent.Initialize(aIntent.ACTION_VIEW, "file:" & sPath & sFileName)
aIntent.SetType("application/pdf")
StartActivity(aIntent)
Catch
Msgbox(LastException.Message, "Errore durante l'apertura del file pdf")
End Try