无法解析android.support.design。迁移到AndroidX之后


Answers:


221

解决此问题的方法: snackbarView.findViewById<TextView>(com.google.android.material.R.id.snackbar_text)


1
刚刚为此苦苦挣扎:)
a_local_nobody '19

1
@varun非常感谢。很高兴为您提供帮助并回馈社区!
dudi

@apurvthakkar NP。很高兴我能帮助你。快乐的编码
杜迪

50

感谢@dudi的出色回答,通常在迁移到androidX时,您可以替换

android.support.design.R

com.google.android.material.R

我已经写上AndroidX迁移短暂一步一步的文章在这里,如果有人有兴趣知道更多。


15

您已迁移到AndroidX,这意味着库现在有所不同。

(android.support.design.R.id.snackbar_text)到(com.google.android.material.R.id.snackbar_text)


6
抱歉,但这只是所接受答案的重复。
deHaar

15

改变这个:

android.support.design.R

com.google.android.material.R

解决问题。迁移到AndroidX后,我们正在使用其他库。


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.