在Android的视图中显示PDF

| 在Android中,我需要在视图中显示
asset
文件夹中的PDF文件。谁能帮我提供示例代码?     
已邀请:
我认为不可能在视图中显示它。您必须先制作一个“ 1”,然后调用一个外部程序。
File sd = new File(\"example.pdf\");
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.fromFile(sd));
intent.setDataAndType(Uri.fromFile(sd), \"application/pdf\");
try {
    getContext().startActivity(intent);
} catch(ActivityNotFoundException e){
    // Show a message that a PDF viewer is not installed
    Toast.makeText(\"No PDF reader available\",Toast.LENGTH_LONG).show();
}
    

要回复问题请先登录注册