3

friends,

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

or any other useful way?

any help would be appreciated.

Rinav
  • 2,347
  • 8
  • 32
  • 51
UMAR-MOBITSOLUTIONS
  • 75,298
  • 95
  • 204
  • 276

1 Answers1

0

Try this:

Intent intent = new Intent(Intent.ACTION_VIEW);
File file = new File("filename");
intent.setDataAndType(Uri.fromFile(file), "application/pdf");
startActivity(intent);
MattButtMatt
  • 461
  • 2
  • 13
  • 26