androidAPP & program推荐库/文章

Glide适配Androidx

2022-04-15  本文已影响0人  tcd

项目地址glide

1. Android Studio中使用Glide

Glide从4.9.0版本之后支持Androidx(最新已经到glide.4.13.1),在使用As时可以按照该项目的介绍,直接在Gradle中进行如下配置:

repositories {
   google()
   mavenCentral()
}

dependencies {
    implementation 'com.github.bumptech.glide:glide:4.13.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.13.0'
}

或者直接下载相关的库包到项目的app/libs目录下,具体用到哪些库见文章最后,主要有.jar&.aar两种格式的库包,然后直接右键相应的包选择“Add As Library”使用该库,或者直接在Gradle中进行如下配置:

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.aar'])
    // 后面两项在使用Glide时会用到,否则会出现加载不了图片的情况
    implementation 'androidx.vectordrawable:vectordrawable-animated:1.1.0'
    implementation 'androidx.exifinterface:exifinterface:1.2.0'  
}

2. Android源码中使用支持Androidx的Glide

在源码环境编译项目,需要在Android.mk中对要用到的依赖库进行配置:

aar格式库包

LOCAL_STATIC_ANDROID_LIBRARIES := \
        androidx.exifinterface_exifinterface \
        androidx.vectordrawable_vectordrawable-animated
LOCAL_STATIC_JAVA_AAR_LIBRARIES := library-common-release \
        glide-4.13.1 \
        gifdecoder-4.13.1 \
        disklrucache-4.13.1
LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := \
       glide-4.13.1:libs/glide-4.13.1.aar  \
       gifdecoder-4.13.1:libs/gifdecoder-4.13.1.aar \
       disklrucache-4.13.1:libs/disklrucache-4.13.1.aar

jar格式的包只需将LOCAL_STATIC_JAVA_AAR_LIBRARIES改为LOCAL_STATIC_JAVA_LIBRARIES即可

3. 相关库

一般情况下下载如下三个库即可:
GlideGlide GIF Decoder LibraryGlide Disk LRU Cache Library
还需添加两个androidx库,如上面Gradle及Android.mk里配置的exifinterfacevectordrawable-animated

另外如果需要更多的依赖库见:Group: GitHub Bumptech Glide

上一篇 下一篇

猜你喜欢

热点阅读