欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Android Studio入门day05

程序员文章站 2024-01-07 22:12:04
ImageView图片视图控件src:图片路径scaleType三种常用属性1. fitXY:撑满控件,宽高可能改变2. fitCenter:保持宽高比缩放3. centerCrop:保持宽高比缩放,裁剪显示给ImageView控件加载网络图片1. 登录github官网https://github.com/bumptech/glide 查找bumptech/glide,其Download的Or use Gradle:中的内容repositories { goog......

ImageView图片视图控件

src:图片路径

scaleType三种常用属性

1. fitXY:撑满控件,宽高可能改变

2. fitCenter:保持宽高比缩放

3. centerCrop:保持宽高比缩放,裁剪显示

 

给ImageView控件加载网络图片

1. 登录github官网https://github.com/bumptech/glide  查找bumptech/glide,其Download的Or use Gradle:中的内容

repositories {
  google()
  jcenter()
}
dependencies {
  implementation 'com.github.bumptech.glide:glide:4.11.0'
  annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
}

加入到build.gradle中

 

在AndroidManifest.xml中添加权限

<uses-permission android:name="android.permission.INTERNET"/>

在后端java代码中添加

private ImageView  iv;


ImageView imageView = (ImageView) findViewById(R.id.iv_1);

  Glide.with(this).load("图片的URI").into(imageView);

 

 

 

 

 

 

 

 

 

本文地址:https://blog.csdn.net/m0_47119598/article/details/108720299

相关标签: android