首先app的build.gradle中加入Glide的依赖,
//图片加载框架
implementation 'com.github.bumptech.glide:glide:4.10.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0'
第二就是在AndroidManifest.xml中加入网络权限
<uses-permission android:name="android.permission.INTERNET" />
如果上面的两个都实现了还是不能实现网络加载图片,那就再加入下面的代码
android:usesCleartextTraffic="true"
android:networkSecurityConfig="@xml/network_security_config"
在res中创建xml,在xml中创建network_security_config.xml,代码如下:
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="true" />
</network-security-config>
这样就问题就解决了。话不多说,直接上代码
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
app:srcCompat="@mipmap/ic_launcher" />
</LinearLayout>
MainActivity.java
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.ImageView;
import com.bumptech.glide.Glide;
public class MainActivity extends AppCompatActivity {
private ImageView imageView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
imageView = (ImageView) findViewById(R.id.imageView);
Glide.with(this) //上下文
.load("图片地址") //图片地址
.placeholder(R.mipmap.blue_point) //加载图片之前显示的图片
.error(R.mipmap.three) //图片加载出错时显示的图片
.override(500,500) //设置图片宽高
.into(imageView); //Imageview
}
}
|