Как читать PDF в Android? - PullRequest
1 голос
/ 09 мая 2011

Как читать PDF в Android, хранящемся на SDCard ??

1 Ответ

2 голосов
/ 09 мая 2011

Вот код, показывающий, как открыть файл PDF для чтения:

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();
     }
}
...