iT邦幫忙

2023 iThome 鐵人賽

DAY 19
0
Mobile Development

Android Studio初學系列 第 19

Android Studio初學 DAY19 Checkbox

  • 分享至 

  • xImage
  •  

Checkbox是一個可複選的按鈕元件,有非常多的用法,常見的像是設定是否開啟功能、多選、記住密碼等等,今天就利用checkbox來做一個很常見的確認鍵

XML

<CheckBox
        android:id="@+id/checkBox"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="316dp"
        android:text="我不是機器人"
        android:textSize="20sp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.437"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="148dp"
        android:layout_marginBottom="284dp"
        android:text="確定"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent" />

程式碼

public class MainActivity extends AppCompatActivity {
    private CheckBox checkBox;
    private Button button;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        checkBox = findViewById(R.id.checkBox);
        button = findViewById(R.id.button);
        button.setEnabled(false);
        checkBox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
                if(checkBox.isChecked()){
                    button.setEnabled(true);
                }
                else {
                    button.setEnabled(false);
                }
            }
        });
    }
}

結果如下


同樣的用法也有像是同意以上協議等等的,而也可以利用checkbox做像是問卷、表單等等的作法,活用Checkbox可以出很多常見的東西,今天的介紹就到這邊了,謝謝大家/images/emoticon/emoticon41.gif


上一篇
Android Studio初學 DAY18 Activity生命週期
下一篇
Android Studio初學 DAY20 Retrofit抓取API資料
系列文
Android Studio初學30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言