'android.annotation.NonNull' 在 'android.annotati

#39;android.annotation.NonNull#39; is not public in #39;android.annotation#39;. Cannot be accessed from outside package(android.annotation.NonNull 在 android.annotation 中不公开.无法从外部包访问)
本文介绍了'android.annotation.NonNull' 在 'android.annotation' 中不公开.无法从外部包访问的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我在尝试列出数据时收到此警告.有谁知道为什么?

I get this warning when I try to list data. Does anyone know why?

推荐答案

您指的是 Android 平台的内部注解,这些注解并不是您想要用于您自己的代码的注解.对于您的代码,您应该导入这些注释的 AndroidX 版本:

You're referring to the Android platform's internal annotations, which aren't the ones you want to use for your own code. For your code, you should import the AndroidX versions of those annotations:

androidx.annotation.NonNull

androidx.annotation.Nullable

等等.(注意 androidx vs android 中额外的 x)

etc. (note the extra x in androidx vs android)

您还需要确保在 build.gradle 中声明了对 androidx.annotation:annotation 的依赖项(请参阅 这里获取最新版本信息)

You'll also want to make sure you have declared a dependency on androidx.annotation:annotation in your build.gradle (see here for the latest version information)

这篇关于'android.annotation.NonNull' 在 'android.annotation' 中不公开.无法从外部包访问的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

quot;Char cannot be dereferencedquot; error(“Char 不能被取消引用错误)
Java Switch Statement - Is quot;orquot;/quot;andquot; possible?(Java Switch 语句 - 是“或/“和可能的?)
Java Replace Character At Specific Position Of String?(Java替换字符串特定位置的字符?)
What is the type of a ternary expression with int and char operands?(具有 int 和 char 操作数的三元表达式的类型是什么?)
Read a text file and store every single character occurrence(读取文本文件并存储出现的每个字符)
Why do I need to explicitly cast char primitives on byte and short?(为什么我需要在 byte 和 short 上显式转换 char 原语?)