UMAR-MOBITSOLUTIONS
UMAR-MOBITSOLUTIONS

Reputation: 78004

How to view pdf in android browser?

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

Answers (1)

MinimalMatt
MinimalMatt

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

Related Questions