728x90
전역변수로
Checkbox[] c = {checkBox1, checkBox2, checkBox3}; |
그리고 onCreate 함수에서 배열 c를 사용했는데 NullPoint 에러가 났다.
|
==> CheckBox를 배열로 선언할 땐 = new 를 붙여줘야하나보다...! (사실 잘 모르겠다,,ㅋㅋ)
@BindView(R.id.checkBox1)
CheckBox checkBox1;
@BindView(R.id.checkBox2)
CheckBox checkBox2;
@BindView(R.id.checkBox3)
CheckBox checkBox3;
※ checkBox1,2,3은 위와같이 정의되어 있었다.
'Develop > Resolve errors' 카테고리의 다른 글
부트스트랩 dropdown 버튼을 클릭해도 아이템이 안나온다면? / bootstrap (0) | 2019.02.03 |
---|---|
[pylint] Value 'self.body' is unsubscriptable [E1136] (0) | 2019.01.30 |
java.lang.NumberFormatException: For input string: "" (0) | 2019.01.25 |
[Vscode] E1101:Class has no ‘objects’ member (0) | 2019.01.24 |
[Git] git add . 시 CRLF 오류날 때 (0) | 2019.01.16 |