Page 84 - 3-3
P. 84
types.clearCheck();
amounts.clearCheck();
waters.clearCheck();
// 체크 버튼을 누르면 라디오박스에 설정된 값이 모두 초기화
break;
case R.id.backBtn:
if(flag!=0) {
// 통신 중 일때
th.Close();
// 통신 종료
flag = 0;
// 통신 종료 의미.
}
Intent startIntent = new Intent(this, MainActivity.class);
startIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(startIntent);
// 메인 페이지로
break;
case R.id.lightBtn:
// 해당 페이지에서 화면 밝기 최대
WindowManager.LayoutParams iparam = getWindow().getAttributes();
if(I == 0) {
iparam.screenBrightness = -1;
getWindow().setAttributes(iparam);
I = I + 1;
} else if( I == 1 ) {
iparam.screenBrightness = 1f;
getWindow().setAttribues(iparam);
I = 0;
} else {
}
Log.d("TAG", "LIGHT");
break;
default;
break;
}
}
- 84 -