android开发教程之glide图片加载
程序员文章站
2022-07-03 08:34:57
//使用glide一行代码加载图片
一:添加依赖
[java]view plaincopy
compile'com.github.bumptech.glide:gli...
//使用glide一行代码加载图片
一:添加依赖
[java]view plaincopy
compile'com.github.bumptech.glide:glide:3.7.0'[java]view plaincopy
android:id="@+id/imageview"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
三:代码
this代表上下文 url网络地址 imageview控件id
[java]view plaincopy
Glide.with(this).load(url).into(imageView);