如何使用Android小工具,打开图片的网址上的浏览器(How to open image url

2019-10-20 13:06发布

如何使用意向的Android小工具在浏览器中打开图像。

Answer 1:

如果图像是在互联网上这将是这么简单:

String url = "http://www.picturesnew.com/media/images/image-background.jpg";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);

但是,如果图像是你的资产里面,你不能在浏览器中打开它。 这是因为浏览器接受开头URI数据http 。 此外,该浏览器是一个单独的应用程序和一个应用程序无法使用其他应用程序的资产。

你可以通过使用的WebView的dipslay形象虽然。



Answer 2:

要打开从你的widget网站:

Intent intent= new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.fakesite.com\articles"));
startActivity(intent);


文章来源: How to open image url on browser using android widget