for views only defined in anko we have to declare all ids in a separate ids.xml value file. my problem with this is, that i can not access this ids with kotlin-android-extensions, e.g.
itemView.customId…
did not work. i had to use
itemView.find<View>(R.id.customId)…