android – 在API 26之前从TypedArray获取字体资源

前端之家收集整理的这篇文章主要介绍了android – 在API 26之前从TypedArray获取字体资源前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Android O通过支持库将xml中的字体引入API 16.但是我无法找到TypedArray.getFont()的支持,它需要API级别26.
val array = context.obtainStyledAttributes(styleResId,R.styleable.TextAppearance)
val font = array.getFont(R.styleable.TextAppearance_android_fontFamily) // nope

是否有某种compat实用程序类可用于从样式资源ID中检索字体?

解决方法

找到一种解决方法,即从TypedArray中查找字体的资源ID,然后使用ResourcesCompat加载字体.
val array = context.obtainStyledAttributes(styleResId,R.styleable.TextAppearance)
if (array.hasValue(R.styleable.TextAppearance_android_fontFamily)) {
    val fontId = array.getResourceId(R.styleable.TextAppearance_android_fontFamily,-1)
    val typeface = ResourcesCompat.getFont(context,fontId)
}
原文链接:https://www.f2er.com/android/315838.html

猜你在找的Android相关文章