sethumadhavan / apv

Automatically exported from code.google.com/p/apv
GNU General Public License v3.0
0 stars 0 forks source link

Hyperlink support #98

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. open any pdf with a hyperlink for instance 
http://www.education.gov.yk.ca/pdf/pdf-test.pdf
2.
3.

What is the expected output? What do you see instead?
expected: launches an intent like the following:
String url = "http://www.example.com";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);

see instead: nothing happens

What version of the product are you using? On what operating system?
apvpro-0.3.2.apk on Android 3.1 (Motorola xoom)

Please provide any additional information below.
I've noticed that MuPDF actually supports hyperlinks (at least on their Windows 
app version). I was unable to test their Android version though.

Original issue reported on code.google.com by jhilb...@gmail.com on 8 Feb 2012 at 11:01