Button包括 Image Btton 跟
Text Button
還有混合的優
官方建議Icon Button不要有背景,他們覺得太沉重了
實作API: https://developer.android.com/guide/topics/ui/controls/button.html
其他不同種類的button
就是圈圈兒
實作API: https://developer.android.com/guide/topics/ui/controls/radiobutton.html
這個有點類似Switch,用來改變true/false狀態
實作API: https://developer.android.com/guide/topics/ui/controls/togglebutton.html
還是很不想貼程式碼!!!!!!
但是又想貼(精神錯亂阿你!!)
觸發Button的事件有兩種方式
一種是在.java中寫 OnCheckedChangeListener 詳情API
一種是在layout xml中寫 android:onClick="method1",後端在定義method1內容 詳情API