체크 박스(CheckBox)의 이미지 바꾸기

by 조쉬 posted Jul 16, 2015
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

역시 res 폴더 아래 drawable 폴더 아래 넣어줍니다.

<?xml version="1.0" encoding="utf-8"?>

<selector 

xmlns:android="http://schemas.android.com/apk/res/android">

    

    <item 

    android:state_checked="true" 

    android:drawable="@drawable/btn_check_on"/>

   

    <item 

    android:drawable="@drawable/btn_check_off"/>

   

</selector>

res/drawable/cb_check_on_off.xml


실제 레이아웃(Layout)에서는 다음과 같이 호출하면 됩니다.

<CheckBox

android:id="@+id/cbCheck"

android:button="@drawable/cb_check_on_off"

android:layout_height="wrap_content"

android:layout_width="wrap_content"/>