button 썸네일형 리스트형 [Andoird] Button 클릭 시, textColor 변경 text_selector.xml layout.xml 위와 같이 하면 적용 된다. Java 단에서 하고자 한다면 아래 소스를 참고 하세요. 예) /res/color/selector_text.xml123456 ;버튼이 xml layout 에 있는 경우는 그냥 android:textColor=”@color/selector_text.html” 로 지정해주면 되지만,만약 java 안에서 프로그램적으로 세팅해 주는 경우는 다음과 같은 코드를 써야 한다.123btnTest.setTextColor( getResources().getColorStateList(R.color.selector_text));이렇게 안 하고 그냥 getColor() 를 사용하면 버튼 터치 시 색 변화가 없다.출처 : https://chrisjh.. 더보기 [ Android ] 버튼 이미지 변경 ( 코딩 ) 버튼 클릭 이벤트가 발생 했을 때, 아이콘을 변경하는 방법입니다.기본 drawable 리소스가 존재한다는 전제하에...^^ btn.setCompoundDrawablesWithIntrinsicBounds(getResources().getDrawable(R.drawable.id), null, null, null); 매개변수는 left,top,right,down 순입니다. xml 에선 다음과 같이 적용.참조 : http://stackoverflow.com/questions/4250923/how-to-change-a-buttons-icon-programmatically 그럼 오늘도 즐코딩하세요.^^ 더보기 이전 1 다음