TextViewやButtonなどのViewの取得とListener登録

  • 投稿者:
  • 投稿カテゴリー:その他

ActivityからのView取得とListner登録の例

	// Activityの場合
	// Viewの取得
    val rollButton: Button = findViewById(R.id.button)
    val resultTextView: TextView = findViewById(R.id.textView)

    // Listenerの登録
    rollButton.setOnClickListener {
        resultTextView.text = "更新しました"
    }

トレーニング > KOTLIN を用いた ANDROID の基本 > KOTLINの基本 > ADD A BUTTON > インタラクティブな Dice Roller アプリを作成する > 5.サイコロを振るためのロジックを追加する