我正在尝试在我的应用程序中嵌入远程pdf ,,,,
这是我在搜索谷歌后尝试过的 -
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.pdf);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("http://mydomain.com/downloads/abc.pdf"), "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
try {
startActivity(intent);
}
catch (ActivityNotFoundException e) {
Toast.makeText(TestPdf.this,
"No Application Available to View PDF",
Toast.LENGTH_SHORT).show();
}
}
始终进入catch区块,
我也有使用“https://docs.google.com/viewer/....",,Its正在运行的解决方案,但谷歌提供了下载pdf ,,,
的选项我正在寻找一个解决方案,有一个Activity(包含我的页眉和页脚),它将嵌入远程pdf(不允许下载),,,,
由于