未解决的参考:字体 findFromCache
Unresolved reference: Typeface findFromCache
Typeface
class 包含静态 findFromCache
方法:
https://android.googlesource.com/platform/frameworks/base/+/refs/heads/master/graphics/java/android/graphics/Typeface.java
我在 Typeface
源代码中也看到了 IntelliJ 中的方法。
但是,当我尝试使用它时出现 Unresolved reference: findFromCache
错误。我当前的 API 版本是 28。目标 API 26.
SDK中有方法为什么会报错?
这个 API 有一个 "annotation" @hide
, this means it is an undocumented / hidden API, which are prohibited to use since Android API 28。
Typeface
class 包含静态 findFromCache
方法:
https://android.googlesource.com/platform/frameworks/base/+/refs/heads/master/graphics/java/android/graphics/Typeface.java
我在 Typeface
源代码中也看到了 IntelliJ 中的方法。
但是,当我尝试使用它时出现 Unresolved reference: findFromCache
错误。我当前的 API 版本是 28。目标 API 26.
SDK中有方法为什么会报错?
这个 API 有一个 "annotation" @hide
, this means it is an undocumented / hidden API, which are prohibited to use since Android API 28。