I have written HTML file which contains link to some other websites. I used
HtmlWebViewSource html = new HtmlWebViewSource();
to render and display HTML contents.
Now, I have links of URLs in that HTML and when I click the link, it opens default browser and opens the website. I used:
Device.OpenUri(new Uri(args.Url));
Now, the problem is I would like to have a link in that HTML and upon clicking that link, it should open embedded PDF file.
Is there any way I could achieve this from my code design OR do I have to re-write different approach. And if any best approach available, can you please suggest it?