- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在学习 udemy 上的类(class),其中讲师要求使用以下代码。
我尝试使用相同的代码,但遇到了多个错误。这是当我输入相同代码时 android studio 的样子。
首先,android studio无法识别该符号 Build.VERSION_CODES.R
当我将鼠标悬停在 android studio 中突出显示的文本上时,它会显示以下消息:
Uncessary; SDK_INT is never < 21
这毫无意义,因为首先Build.VERSION_CODES.R
api 级别为 30,我的最低目标 api 级别为 21。 其次,即使我的 SDK_INT
不能低于 21。 Build.VERSION_CODES
内的版本代码不应该改变。
android studio 显示的下一个错误是它无法解析 window.insetsController
Unresolved reference: insetsController
如果我浏览 Window
的源代码android studio 里面的类我可以看到 getInsetsController
方法insetsController
字段应该是换行的。我尝试直接使用该方法而不是 kotlin getter,并且 android studio 也无法识别该方法。
android studio找不到的另一个字段是WindowInsets.Type
,我可以看到它存在于源代码中,但我无法访问它。
我的compileSdkVersion
设置为29
和buildToolsVersion
设置为"29.0.3"
.
如果有人知道发生了什么,如果您能回答,我们将不胜感激。我尝试创建一个新项目并尝试相同的代码,但错误仍然存在。也许我使用的sdk坏了?但我的sdk是android studio自带的,所以我不确定。最近,我将 android studio 从 4.0 更新到了 4.1,这可能是问题所在吗?
最佳答案
My compileSdkVersion is set to 29
将其设置为30
。 Android R (Android 11) 的 API 级别为 30。
始终将您的 compileSdkVersion
设置为最新的 Android 生产版本。
关于Android Studio Build.VERSION_CODES.R 和 Window.getInsetsController() 丢失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66402900/
我将我的应用程序升级到 SDK 30。我看到 FLAG_FULLSCREEN 已弃用。然后,我用这个改变了代码; final WindowInsetsController insetsControll
我正在学习 udemy 上的类(class),其中讲师要求使用以下代码。 我尝试使用相同的代码,但遇到了多个错误。这是当我输入相同代码时 android studio 的样子。 首先,android
我正在学习 udemy 上的类(class),其中讲师要求使用以下代码。 我尝试使用相同的代码,但遇到了多个错误。这是当我输入相同代码时 android studio 的样子。 首先,android
我是一名优秀的程序员,十分优秀!