style은 View 나 window 의 외관이나 형식을 특정화시키는 속성의 집합이다. style은 높이, 패딩, 폰트 색깔, 폰트 사이트, 배경색상 등의 속성을 특정화시킨다. style은 XML 리소스에서 정의하므로 레이아웃과 분리할 수 있다. A style is a collection of properties that specify the look and format for a View or window. A style can specify properties such as height, padding, font color, font size, background color, and much more. A style is defined in an XML resource that is separate ..
A drawable resource is a general concept for a graphic that can be drawn to the screen and which you can retrieve with APIs such as getDrawable(int) or apply to another XML resource with attributes such as android:drawable and android:icon. There are several different types of drawables: drawable resource 는 스크린에 그릴수 있는 그래픽의 일반적인 개념이다. API를 부르거나 다른 XML 리소스에 적용시킨다. drawables의 여러가지 타입들이 있다. 참고자료 Dr..
버튼 상태값에 따라 색상을 변경시킨다. Define a color resources that changes based on the View state. Saved in res/color/ and accessed from the R.color class. 작업순서 res/color/filename.xml 에 selector를 정의한다. 레이아웃 XML 에서 속성 android:textColor의 값을 @color/filename 으로 설정한다. 참고문서 Color State List Resource 문법 xmlns:android="http://schemas.android.com/apk/res/android" 정해진 문자열 android:color 16진수 색상값, 반드시 #로 시작한다. 형식 : #RGB,..