เพิ่มปุ่มเปิด/ปิด

ลองใช้วิธีการเขียน
Jetpack Compose เป็นชุดเครื่องมือ UI ที่แนะนำสำหรับ Android ดูวิธีเพิ่มคอมโพเนนต์ใน Compose

หากใช้เลย์เอาต์แบบ View จะมี 3 ตัวเลือกหลักสำหรับ การใช้ปุ่มสลับ เราขอแนะนำให้ใช้ คอมโพเนนต์ SwitchMaterial จาก Material ไลบรารีคอมโพเนนต์

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="16dp">

    <com.google.android.material.switchmaterial.SwitchMaterial
        android:id="@+id/material_switch"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/material_switch"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

แอปเดิมอาจยังคงใช้แอปรุ่นเก่า SwitchCompat AppCompat คอมโพเนนต์ ดังที่ปรากฏในตัวอย่างต่อไปนี้

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="16dp">

    <androidx.appcompat.widget.SwitchCompat
        android:id="@+id/switchcompat"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/switchcompat"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

ตัวอย่างต่อไปนี้จะแสดง AppCompatToggleButton ซึ่งเป็นคอมโพเนนต์เดิมอีกรายการหนึ่งที่มี UI แตกต่างออกไปอย่างเห็นได้ชัด

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="16dp">

    <TextView
        android:id="@+id/toggle_button_label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toStartOf="@id/toggle"
        app:layout_constraintHorizontal_chainStyle="packed"
        app:layout_constraintBaseline_toBaselineOf="@id/toggle"
        android:text="@string/toggle_button" />

    <androidx.appcompat.widget.AppCompatToggleButton
        android:id="@+id/toggle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toEndOf="@id/toggle_button_label"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"/>

</androidx.constraintlayout.widget.ConstraintLayout>

องค์ประกอบทั้ง 3 นี้มีลักษณะการทำงานเหมือนกันแต่ดูต่างกัน ความแตกต่างระหว่าง SwitchMaterial และ SwitchCompat นั้นในระดับเล็กน้อย แต่ AppCompatToggleButton แตกต่างอย่างเห็นได้ชัด:

SwitchMaterial, SwitchCompat และ AppCompatToggleButton
ปุ่มควบคุม

รูปที่ 1 ปุ่มเปิด/ปิด 3 ประเภท

จัดการการเปลี่ยนแปลงสถานะ

SwitchMaterial, SwitchCompat และ AppCompatToggleButton เป็นคลาสย่อยทั้งหมด ของ CompoundButton ซึ่ง มอบกลไกทั่วไปในการจัดการกับการเปลี่ยนแปลงสถานะที่ตรวจสอบแล้ว คุณใช้ ตัวอย่าง CompoundButton.OnCheckedChangeListener แล้วเพิ่มลงในปุ่ม ดังที่ปรากฏในตัวอย่างต่อไปนี้

Kotlin

class MainActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)

        val binding: SwitchLayoutBinding = SwitchLayoutBinding.inflate(layoutInflater)
        setContentView(binding.root)

        binding.materialSwitch.setOnCheckedChangeListener { _, isChecked ->
            if (isChecked) {
                // The switch is checked.
            } else {
                // The switch isn't checked.
            }
        }
    }
}

Java

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        SwitchLayoutBinding binding = SwitchLayoutBinding.inflate(getLayoutInflater());
        setContentView(binding.getRoot());

        binding.materialSwitch.setOnCheckedChangeListener((buttonView, isChecked) -> {
            if (isChecked) {
                // The switch is checked.
            } else {
                // The switch isn't checked.
            }
        });
    }
}

CompoundButton.OnCheckedChangeListener เป็นอินเทอร์เฟซเมธอดเชิงนามธรรมเดี่ยว (หรืออินเทอร์เฟซ SAM) เพื่อให้คุณใช้งานเป็น lambda ได้ แลมบ์ดามีชื่อเรียกว่า เมื่อใดก็ตามที่สถานะที่เลือกเปลี่ยนแปลง และค่าบูลีน isChecked ที่ส่งไปยัง lambda จะระบุสถานะที่ตรวจสอบแล้วใหม่