[Android - 안드로이드] 자바 소스에서 상황에 따른 Color값 변경(presee, check.. 등등)
int[][] states = new int[][] {// new int[] { android.R.attr.state_enabled}, // enabled// new int[] {-android.R.attr.state_enabled}, // disabled// new int[] {-android.R.attr.state_checked}, // unchecked new int[] { android.R.attr.state_pressed}, // pressed new int[] {}}; int[] colors = new int[] { Color.parseColor( ("#" + cRowNor) ), Color.parseColor( ("#" + cRowSel) )};ColorStateList c = new Col..