简单网络图片加载
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单网络图片加载相关的知识,希望对你有一定的参考价值。
1、依赖里面加入
compile ‘com.github.bumptech.glide:glide:3.6.1‘
2、布局里面放置一个ImageView控件
<ImageView
android:id="@+id/img"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
3、代码里面
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_img_test);
ImageView img = (ImageView) findViewById(R.id.img);//layout中放一个ImageView控件,id是@+id/img
String url = "https://ss0.bdstatic.com/70cFuHSh_Q1YnxGkpoWK1HF6hhy/it/u=3917297328,2353437284&fm=27&gp=0.jpg";
Glide.with(this).load(url).placeholder(R.drawable.myimg).crossFade().into(img);
}
以上是关于简单网络图片加载的主要内容,如果未能解决你的问题,请参考以下文章