Reputation: 78004
friends,
any one guide me how can i view pdf file in android browser?
or any other useful way?
any help would be appreciated.
Upvotes: 3
Views: 2248
Reputation: 561
Try this:
Intent intent = new Intent(Intent.ACTION_VIEW);
File file = new File("filename");
intent.setDataAndType(Uri.fromFile(file), "application/pdf");
startActivity(intent);
Upvotes: 0