public class OpenPdf extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button button = (Button) findViewById(R.id.OpenPdfButton);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
File file = new File("/sdcard/example.pdf");
if (file.exists()) {
Uri path = Uri.fromFile(file);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
try {
startActivity(intent);
}
catch (ActivityNotFoundException e) {
Toast.makeText(OpenPdf.this,
"No Application Available to View PDF",
Toast.LENGTH_SHORT).show();
}
}
}
});
}
}
我已尝试过以上代码,但在模拟器上看不到输出。请帮我解决我在模拟器上阅读PDF的问题
答案 0 :(得分:2)
我认为问题出在您尝试显示.pdf的Activity中。
我没有尝试在我的任何应用程序中打开任何.pdf文件,但粗略搜索说没有原生的,简单的方法来做到这一点。换句话说,没有Android类可以快速显示您的.pdf文件 - 所以您必须使用第三方库,或者自己动手。