본문 바로가기
안드로이드 자바

[Java][Android] Switch를 이용한 On/Off 기능 구현하기

by teamnova 2024. 9. 24.
728x90

안녕하세요!

이번에는 간단한 Switch 위젯을 통해 On/Off 기능을 구현하는 방법을 알아보겠습니다. 

 

Switch는 사용자가 두 가지 상태(켜짐/꺼짐)를 선택할 수 있게 해 주는 UI 요소입니다.

 

전체 코드입니다.

 

MainActivity.java

public class MainActivity extends AppCompatActivity {


  private Switch switch1;
  private TextView textView;


  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    switch1 = findViewById(R.id.switch1);
    textView = findViewById(R.id.textView);

    // Switch 상태 변화에 따른 동작 정의
    switch1.setOnCheckedChangeListener((buttonView, isChecked) -> {
      if (isChecked) {
        textView.setText("스위치 ON");
      } else {
        textView.setText("스위치 OFF");
      }
    });

  }
}

 

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:gravity="center"
    android:padding="16dp">

    <Switch
        android:id="@+id/switch1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Switch" />

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="스위치"
        android:textSize="18sp"
        android:layout_marginTop="20dp" />

</LinearLayout>

 

스위치의 setOnCheckedChangeListener 메소드를 통해, 스위치의 On/Off 를 감지할수 있으며,

스위치의 상태에 따라 원하는 기능을 추가하면 됩니다.

 

시연 영상입니다.