Android - Glide4.4.0使用

Posted helloworld1111

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android - Glide4.4.0使用相关的知识,希望对你有一定的参考价值。

错误信息

java.lang.NoSuchMethodError: No static method getFont(Landroid/content/Context;ILandroid/util/TypedValue;ILandroid/widget/TextView;)Landroid/graphics/Typeface; in class Landroid/support/v4/content/res/ResourcesCompat; or its super classes (declaration of ‘android.support.v4.content.res.ResourcesCompat‘ 
at android.support.v7.widget.TintTypedArray.getFont(TintTypedArray.java:119)

产生原因

Glide 依赖的支持库与项目依赖的支持库版本不同

解决办法

目前Glide依赖支持库版本27,Glide与项目使用同一版本的支持库。
在build.gradle文件中设置

android {
    compileSdkVersion 27
}

dependencies {
    implementation ‘com.android.support:appcompat-v7:27.0.2‘
}

以上是关于Android - Glide4.4.0使用的主要内容,如果未能解决你的问题,请参考以下文章

我的Android进阶之旅Android Studio 中 使用git提交代码报错:Can‘t commit changes from multiple changelists at once(代码片

Android 逆向ART 脱壳 ( InMemoryDexClassLoader 脱壳 | BaseDexClassLoader 构造函数 | DexPathList 构造函数及后续调用 )(代码片

FlutterFlutter 全面屏适配 ( 需要适配的情况 | Android 设置最大宽高比 | 使用 SafeArea 进行全面屏适配 | 使用 MediaQuery 进行全面屏适配 )(代码片

Android Studio编译OsmAnd出现警告:GeoPointParserUtil.java使用或覆盖了已过时的 API。有关详细信息请使用-Xlint:deprecation重新编译(代码片

Android 逆向修改运行中的 Android 进程的内存数据 ( 运行环境搭建 Android 模拟器安装 | 拷贝 Android 平台可执行文件和动态库到 /data/system )(代码片

Android 返回堆栈管理打印 Android 中当前运行的 Activity 任务栈信息 | Activity 任务栈信息分析 | Activity 在相同 Stack 中的不同 Task(代码片