android.R.id view binding in Kotlin

Viewed 2308

I've got layout android.R.layout.simple_list_item_1 where is a TextView with id @android:id/text1 or android.R.id.text1 and I'd like to bind it like view.text1.setText("bannoe it") How can I achieve this?

1 Answers
Related