How to view pdf in android browser?

2.2k Views Asked by At

friends,

any one guide me how can i view pdf file in android browser?

or any other useful way?

any help would be appreciated.

1

There are 1 best solutions below

0
On

Try this:

Intent intent = new Intent(Intent.ACTION_VIEW);
File file = new File("filename");
intent.setDataAndType(Uri.fromFile(file), "application/pdf");
startActivity(intent);