Search code examples
androidtextviewandroid-support-libraryandroidxandroid-snackbar

Can't resolve android.support.design. after migration to AndroidX


I am trying to get the TextView of the Snackbar with this code snippet:

snackbarView.findViewById<TextView>(android.support.design.R.id.snackbar_text)  

but Android Studio does not resolve the design library.

How can I get this code to work?


Solution

  • Solved with this solution: snackbarView.findViewById<TextView>(com.google.android.material.R.id.snackbar_text)