Предположим, у вас есть такой макет:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="visible"
android:orientation="vertical">
<Button android:id="@+id/btOne" android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="one"/>
<Button android:id="@+id/btTwo" android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="two"/>
<Button android:id="@+id/btThree" android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="three"/>
</LinearLayout>
Сначала примените плагин kotlin extensions для синтаксического синтаксиса в вашем build.gradle
с помощью
apply plugin: 'kotlin-android-extensions'
Затем вы можете просто инициализироватьмассив кнопок в вашем коде, выполнив:
val buttons = arrayOf(btOne, btTwo, btThree)
В противном случае, если вы не хотите использовать синтаксис kotlin, просто используйте старый синтаксис findviewbyid
val buttons = arrayOf(
findViewById(R.id.btOne),
findViewById(R.id.btTwo),
findViewById<Button>(R.id.btThree)
)