使用Android上的Fresco库从SD卡显示图像
作者:互联网
我可以使用Fresco图像库从URL显示图像,如其网站所示 –
Uri u = Uri.parse("https://assets-cdn.github.com/images/modules/logos_page/GitHub-Mark.png");
SimpleDraweeView draweeView = (SimpleDraweeView) findViewById(R.id.my_image_view);
draweeView.setImageURI(u);
如何使用Fresco显示SD卡中的图像?
解决方法:
查看:
https://dzone.com/articles/displaying-images-sd-card
http://frescolib.org/docs/supported-uris.html#_
这里从第一个链接解释从SD卡加载图像,如何将其与壁画连接在第二个链接中解释.
标签:fresco,android,sd-card 来源: https://codeday.me/bug/20190722/1503914.html