項目地址:glide
1. Android Studio中使用Glide
Glide從4.9.0版本之后支持Androidx(最新已經(jīng)到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'
}
或者直接下載相關(guān)的庫包到項目的app/libs目錄下,具體用到哪些庫見文章最后,主要有.jar&.aar兩種格式的庫包,然后直接右鍵相應(yīng)的包選擇“Add As Library”使用該庫胞此,或者直接在Gradle中進行如下配置:
dependencies {
implementation fileTree(dir: 'libs', include: ['*.aar'])
// 后面兩項在使用Glide時會用到假褪,否則會出現(xiàn)加載不了圖片的情況
implementation 'androidx.vectordrawable:vectordrawable-animated:1.1.0'
implementation 'androidx.exifinterface:exifinterface:1.2.0'
}
2. Android源碼中使用支持Androidx的Glide
在源碼環(huán)境編譯項目,需要在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. 相關(guān)庫
一般情況下下載如下三個庫即可:
Glide 哪痰、 Glide GIF Decoder Library 、Glide Disk LRU Cache Library
還需添加兩個androidx庫久妆,如上面Gradle及Android.mk里配置的exifinterface及vectordrawable-animated
另外如果需要更多的依賴庫見:Group: GitHub Bumptech Glide