在进入 glide 示例之前,我们应该知道什么是 glide,glide 是 muyangmin 开发的一个图像处理库。使用 glide 库,我们可以显示图像、解码图像、缓存图像、动画 gif 等等。
这个例子演示了如何在 android 中集成 glide。
第 1 步– 在 android studio 中创建一个新项目,转到 file → new project 并填写所有必需的详细信息以创建一个新项目。
第 2 步- 在build.gradle(module:app)中添加以下代码。
plugins { id 'com.android.application'} android { compilesdk 32 defaultconfig { applicationid "com.example.myapplication" minsdk 21 targetsdk 32 versioncode 1 versionname "1.0" testinstrumentationrunner "androidx.test.runner.androidjunitrunner" } buildtypes { relea { minifyenabled fal proguardfiles getdefaultproguardfile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileoptions { sourcecompatibility javaversion.version_1_8 targetcompatibility javaversion.version_1_8 }} dependencies { implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'com.google.android.material:material:1.3.0' implementation 'androidx.constraintlayout:constraintlayout:2.0.4' implementation 'com.对电子商务的认识github.bumptech.glide:glide:4.8.0' annotationprocessor 'com.github.bumptech.glide:compiler:4.8.0' testimplementation 'junit:junit:4.+' androidtestimplementation 'androidx.test.ext:junit:1.1.2' androidtestimplementation 'androidx.test.espresso:espresso-core:3.3.0'}
第 3 步– 在 androidmanifest.xml 中添加以下代码。
<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.myapplication"> <us-pe就要去干rmission android:name="android.permission.internet" /> <application android:allowbackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundicon="@mipmap/ic_launcher_round" android:supportsrtl="true" android:theme="@style/theme.myapplication"> <activity android:name=".mainactivity" android:exported="true"> <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="andro关于国庆节的来历id.intent.category.launcher" /> </intent-filter> </activity> </application> </manifest>
第 4 步– 将以下代码添加到 res/layout/activity_main.xml。
<?xml version="1.0" encoding="utf-8"?><androidx.constraintlayout.widget.constraintlayout 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"> <linearlayout android:layout_width="mat乡愁ch_paren羽泉专辑t" android:layout_height="match_parent" android:background="#797979" android:gravity="center" android:orientation="vertical"> <imageview android:id="@+id/imageview" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </linearlayout> </androidx.constraintlayout.widget.constraintlayout>
第 5 步– 将以下代码添加到 src/mainactivity.java
package com.example.myapplication; import android.os.bundle;import android.widget.imageview; import androidx.appcompat.app.appcompatactivity; import com.bumptech.glide.glide;import com.example.myapplication.r; public class mainactivity extends appcompatactivity { @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); tcontentview(r.layout.activity_main); imageview imageview = findviewbyid(r.id.imageview); glide.with(this) .load("/d/file/titlepic/1251267.jpg") .into(imageview); }}
让我们尝试运行您的应用程序。我假设您已将实际的 android 移动设备与您的计算机连接起来。要从 android studio 运行应用程序,请打开项目的活动文件之一,然后单击工具栏中的运行图标。选择您的移动设备作为选项,然后检查您的移动设备,它将显示您的默认屏幕
到此这篇关于android中如何使用glide加载图像的文章就介绍到这了,更多相关android用glide加载图像内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!
本文发布于:2023-04-04 17:45:52,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/27c357ebe74c80cf22630a1af053aab2.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:Android中如何使用Glide加载图像.doc
本文 PDF 下载地址:Android中如何使用Glide加载图像.pdf
留言与评论(共有 0 条评论) |