Issue
I am learning to create RecyclerView using Kotlin from this video.
RECYCLERVIEW - Android Fundamentals
According to this video I can access tvTitle
and cbDone
from itemView
.
But in my code it is not showing any suggestion, and if I type by my self it show error. Screenshots
Solution
Try to add,
plugins { id 'kotlin-android-extensions' }
to build.gradle(:app).
Answered By - Hüseyin Sina Ceylan
Answer Checked By - Marie Seifert (JavaFixing Admin)