반응형
res 폴더 안에 color 폴더를 만들어서 xml 을 만듬.(예를 들어 sample.xml을 만듬)
-> sample.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="#ffffff" android:state_pressed="true"/>
<item android:color="#000000" android:state_pressed="false"/>
</selector>
그 후 버튼에다가 적용
<Button
android:id="@+id/btn_check"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/sample"
android:text="Check"/>
이거 말고도 text... 옵션등을 이용해서 적용할 수 있음.
반응형
'프로그래밍 정리 > 안드로이드' 카테고리의 다른 글
Media Store Table 및 Column (0) | 2013.12.13 |
---|---|
안드로이드 기본 이미지 파일이 있는 곳. (0) | 2013.12.12 |
메모리 체크하기 (0) | 2013.12.11 |
어플리케이션 버전 가져오기 (0) | 2013.12.11 |
TableLayout 속성 (0) | 2013.12.11 |