Android访问网络图片
1.新建ImageView
// 新建标签
<ImageView
android:id="@+id/image_1"
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="#FF9900"
android:scaleType="centerCrop"
/>
2.使用glide
官网: https://github.com/bumptech/glide
在build.grable文件中添加
//引入文件
repositories {
google()
mavenCentral()
}
dependencies {
implementation 'com.github.bumptech.glide:glide:4.13.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.13.0'
}
3.添加权限
1.在AndroidManifest文件中添加字段
//添加权限即可
<uses-permission android:name="android.permission.INTERNET"/>
4.运行使用
//获取标签对象
imageView= findViewById(R.id.image_1);
//使用Glide加载文件
Glide.with(this).load("https://img2.woyaogexing.com/2022/05/17/3cc155dcab0440e488ff7f66766b8d7d!400x400.jpeg").into(imageView);