このようにアセットフォルダーからファイルを取得できます
Intent i = new Intent(Intent.ACTION_VIEW);
i.setDataAndType(Uri.parse("file:///android_asset/help_doc.pdf"), "application/pdf");
i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
try{
startActivity(i);
}catch(ActivityNotFoundException e){
Toast.makeText(this, "No Application Available to View PDF", Toast.LENGTH_SHORT).show();
}
しかし、アプリケーションを選択して開くと、開かないか、エラーが表示error opening file. it does not exist or cannot be read
されますが、それをSDカードに入れてクリックして開くと、このエラーが発生しないので、やり方が間違っています?