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) }