반응형
출처 : Stack Overflow
custom attribute 를 style 정의하는 방법
- style 정의는 보통 다음과 같이 하죠.
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="btn_text">
<item name="android:textSize">15dp</item>
</style>
</resources>
- custom attribute 에 대한 style 정의도 같은 방식으로 하면 될 것 같습니다.
<resources xmlns:myattr="http://schemas.android.com/apk/res/com.example">
<style name="custom_btn_text">
<item name="myattr:textSize2">15dp</item>
</style>
</resources>
<resources xmlns:myattr="http://schemas.android.com/apk/res/com.example">
<style name="custom_btn_text">
<item name="textSize2">15dp</item>
</style>
</resources>
도움이 되셨다면 손가락 꾸욱~ ( 로그인 필요 x )
반응형
'프로그래밍 놀이터 > 안드로이드, Java' 카테고리의 다른 글
[android] Data Backup 하기 ( Backup APIs ) (0) | 2012.11.14 |
---|---|
[android] animation gif 출력하기. (0) | 2012.11.14 |
XMPP ( eXtensible Messaging and Presence Protocol ) (0) | 2012.11.13 |
[android] MQTT 이용하여 Push Notification 받기 (0) | 2012.11.13 |
[android] 안드로이드 Push notification 방법 (0) | 2012.11.13 |
댓글