【Android 入門指南】系列文章目錄:https://bit.ly/3TFgCzu
Android 線上課程教學影片:https://bit.ly/433Offj
本課程學習如何在 Kotlin 程式碼檔案中,設定 Button 按鈕元件點擊事件。
若您無法順利觀看教學影片,請先登入您的 YouTube 帳號,然後點擊以下連結加入我們的頻道會員:
Button 元件,通常用來處理按下按鈕執行特定功能。
範例名稱:Button 按鈕元件
作者:HKT (侯光燦)
授權範圍:使用時必須註明出處且不得為商業目的之使用
範例下載點:點我下載
<Button
android:id="@+id/myButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="HKT線上教室" />
binding.myButton.setOnClickListener {
Toast.makeText(this, "按鈕偵測到點擊事件", Toast.LENGTH_SHORT).show()
}