메뉴 건너뛰기

조회 수 6405 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

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

단축키

Prev이전 문서

Next다음 문서

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

역시 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"/>


List of Articles
번호 제목 날짜 조회 수
137 사용자 정의 팝업창 띄우기 2015.07.16 6340
136 사진찍기 및 앨범 에서 사진 가져오기!!! 2014.08.28 13890
135 서버에서 이미지 불러와서 이미지뷰에 띄우기 file 2015.07.16 9843
134 서비스가 실행중인지 알아보는 방법 2015.07.16 6555
133 스토리보드 짜는 방법 file 2015.07.16 15429
132 실행중인 Service 확인하기 2014.08.28 6597
131 안드로이드 ( Android ) APK 파일 생성하기 file 2015.07.17 7312
130 안드로이드 - AlertDialog 사용하여 알림창 띄우는 방법 총정리 file 2021.03.31 694
129 안드로이드 - AsyncTask 구현 예제 file 2021.04.01 283
128 안드로이드 - BottomNavigationView 사용하여 하단 메뉴 만들기 file 2021.04.02 1448
127 안드로이드 - Json 파싱하기 file 2021.04.02 851
126 안드로이드 - KeyEvent(키 이벤트) 처리 file 2021.04.02 1220
125 안드로이드 - RatingBar를 통해 별점주기 file 2021.04.02 855
124 안드로이드 - RecyclerView 안에 RecyclerView 구현하기 file 2021.04.02 503
123 안드로이드 - RecyclerView의 ViewType 구분하기 file 2021.04.02 936
122 안드로이드 - Serializable를 활용한 다른 액티비티에 객체(Object) 전달하기 file 2021.03.31 281
121 안드로이드 - setContentView()와 레이아웃 전개자(LayoutInflater) 2021.04.01 228
120 안드로이드 - SharedPreferences에 앱 정보 저장하기 file 2021.04.02 397
119 안드로이드 - SnackBar를 사용해 팝업창 띄우기 file 2021.03.31 284
118 안드로이드 - SQLiteDatabase 구현하기 file 2021.04.01 249
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 11 ... 13 Next
/ 13

하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved