开发者

How to view pdf in android browser?

开发者 https://www.devze.com 2023-01-10 06:37 出处:网络
friends,开发者_运维百科 any one guide me how can i view pdf file in android browser? or any other useful way?

friends,

开发者_运维百科

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

or any other useful way?

any help would be appreciated.


Try this:

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

精彩评论

暂无评论...
验证码 换一张
取 消