当前位置:   article > 正文

在 Android 中使用 Glide 加载图像_glide12.0集成

glide12.0集成

在进入 Glide 示例之前,我们应该知道什么是 glide,Glide 是 muyangmin 开发的一个图像处理库。使用 glide 库,我们可以显示图像、解码图像、缓存图像、动画 gif 等等。

这个例子演示了如何在 android 中集成 glide。

第 1 步- 在 Android Studio 中创建一个新项目,转到 File ⇒ New Project 并填写所有必需的详细信息以创建一个新项目。

第 2 步- 在 build.gradle(Module:app)中添加以下代码。

  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. compileSdk 32
  6. defaultConfig {
  7. applicationId "com.example.myapplication"
  8. minSdk 21
  9. targetSdk 32
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. compileOptions {
  21. sourceCompatibility JavaVersion.VERSION_1_8
  22. targetCompatibility JavaVersion.VERSION_1_8
  23. }
  24. }
  25. dependencies {
  26. implementation 'androidx.appcompat:appcompat:1.2.0'
  27. implementation 'com.google.android.material:material:1.3.0'
  28. implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
  29. implementation 'com.github.bumptech.glide:glide:4.8.0'
  30. annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
  31. testImplementation 'junit:junit:4.+'
  32. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  33. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  34. }

第 3 步- 在 AndroidManifest.xml 中添加以下代码。

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.example.myapplication">
  4. <uses-permission android:name="android.permission.INTERNET" />
  5. <application
  6. android:allowBackup="true"
  7. android:icon="@mipmap/ic_launcher"
  8. android:label="@string/app_name"
  9. android:roundIcon="@mipmap/ic_launcher_round"
  10. android:supportsRtl="true"
  11. android:theme="@style/Theme.MyApplication">
  12. <activity
  13. android:name=".MainActivity"
  14. android:exported="true">
  15. <intent-filter>
  16. <action android:name="android.intent.action.MAIN" />
  17. <category android:name="android.intent.category.LAUNCHER" />
  18. </intent-filter>
  19. </activity>
  20. </application>
  21. </manifest>

第 4 步- 将以下代码添加到 res/layout/activity_main.xml。

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context=".MainActivity">
  8. <LinearLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent"
  11. android:background="#797979"
  12. android:gravity="center"
  13. android:orientation="vertical">
  14. <ImageView
  15. android:id="@+id/imageView"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content" />
  18. </LinearLayout>
  19. </androidx.constraintlayout.widget.ConstraintLayout>

第 5 步- 将以下代码添加到 src/MainActivity.java

  1. package com.example.myapplication;
  2. import android.os.Bundle;
  3. import android.widget.ImageView;
  4. import androidx.appcompat.app.AppCompatActivity;
  5. import com.bumptech.glide.Glide;
  6. import com.example.myapplication.R;
  7. public class MainActivity extends AppCompatActivity {
  8. @Override
  9. protected void onCreate(Bundle savedInstanceState) {
  10. super.onCreate(savedInstanceState);
  11. setContentView(R.layout.activity_main);
  12. ImageView imageView = findViewById(R.id.imageView);
  13. Glide.with(this)
  14. .load("https://pixy.org/src/125/thumbs350/1251267.jpg")
  15. .into(imageView);
  16. }
  17. }

让我们尝试运行您的应用程序。我假设您已将实际的 Android 移动设备与您的计算机连接起来。要从 android studio 运行应用程序,请打开项目的活动文件之一,然后单击   工具栏中的运行图标。选择您的移动设备作为选项,然后检查您的移动设备,它将显示您的默认屏幕

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/482760
推荐阅读
相关标签
  

闽ICP备14008679号