我已经编写了以下代码来在浏览器中打开网址,但是这个网址以pdf结尾,我想在浏览器中打开,但我没有在文件选择器中获得浏览器选项。
startActivity(Intent.createChooser(new Intent(Intent.ACTION_VIEW, Uri.parse(httpUrl),"Choose"));
答案 0 :(得分:0)
尝试以下代码从浏览器中的站点打开pdf文件。
public void button (View view) {
goToUrl ( "http://site address/director/test.pdf");
}
private void goToUrl (String url) {
Uri uriUrl = Uri.parse(url);
Intent launchBrowser = new Intent(Intent.ACTION_VIEW, uriUrl);
startActivity(launchBrowser);
}