开发者

How to Read PDF in Android?

开发者 https://www.devze.com 2023-03-04 03:54 出处:网络
How to Read PDF in Android stored in SDCard 开发者_开发问答??Here\'s some code showing how to open a pdf file to read:

How to Read PDF in Android stored in SDCard 开发者_开发问答??


Here's some code showing how to open a pdf file to read:

private void openBook() {
     File file = new File(mRealPath);
     Uri path = Uri.fromFile(file);
     Intent intent = new Intent(Intent.ACTION_VIEW);
     intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
     intent.setDataAndType(path, getString(R.string.application_type));
     try {
         startActivity(intent);
     } catch (ActivityNotFoundException e) {
         Toast.makeText(FirstTab.this, 
         getString(R.string.no_application_found), 
         Toast.LENGTH_SHORT).show();
     }
}
0

精彩评论

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