I'm trying to learn Kotlin, but, I'm not able to use navigation_drawer_open
, nor navigation_drawer_close
, as the attached image demonstrates
Would anyone give me a hint of what to do to fix the problem?
Are they declared in strings.xml? Usually these strings are created automatically, apparently they were not, so just add them to strings.xml:
<string name="navigation_drawer_open">Open navigation drawer</string>
<string name="navigation_drawer_close">Close navigation drawer</string>