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,527
  • 8
  • 33
  • 55
UMAR-MOBITSOLUTIONS
  • 77,236
  • 95
  • 209
  • 278

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
  • 11
  • 26