본문 바로가기
Android

안드로이드 CheckBox(체크박스) 커스텀하기

by 일용직 코딩노동자 2021. 1. 6.
728x90
반응형

이번에는 CheckBox를 자기가 원하는 이미지의 모양으로 커스텀 해보겠습니다.

 

 

이런 모양의 체크박스로 커스텀해보겠습니다.

 

CheckBox_Image.zip
0.09MB

제가 사용한 이미지는 여기 올려두겠습니다.

 

우선 drawable에 custom_checkbox 라는 xml을 만들어줄게요.

 

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_checked="true"
        android:drawable="@mipmap/check_box_on">
    </item>

    <item android:state_checked="false"
        android:drawable="@mipmap/check_box_off">
    </item>
</selector>

 

이렇게 selector를 작성했습니다.

 

그다음에 메인에서 사용하는 xml입니다.

 

activity_main

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <androidx.appcompat.widget.AppCompatCheckBox
        android:id="@+id/checkbox"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="24dp"
        android:layout_marginTop="24dp"
        android:button="@drawable/custom_checkbox"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">
    </androidx.appcompat.widget.AppCompatCheckBox>


</androidx.constraintlayout.widget.ConstraintLayout>

보시면 button속성에 아까 drawable에서 제작한 xml이 들어갔습니다.

 

메인의 소스입니다.

import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.CheckBox;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {

    CheckBox checkbox;

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

        checkbox = findViewById(R.id.checkbox);

        checkbox.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                //체크 되었을때
                if(checkbox.isChecked()){
                    Toast.makeText(getApplicationContext(),"체크되었습니다.",Toast.LENGTH_SHORT).show();
                }
                //체크 안됬을때
                else{
                    Toast.makeText(getApplicationContext(),"체크 해제 되었습니다.",Toast.LENGTH_SHORT).show();
                }
            }
        });
    }
}

이게.. 끝이네요?

 

 

728x90
반응형

댓글