Notice
Recent Posts
Recent Comments
올해는 머신러닝이다.
Android Button drawable 속성정보 [출처] Android Button drawable 속성정보 |작성자 아즈라엘 본문
Android/Tip&Tech
Android Button drawable 속성정보 [출처] Android Button drawable 속성정보 |작성자 아즈라엘
행복한 수지아빠 2011. 4. 14. 11:18
출처 : http://blog.naver.com/lowmans/100121671992
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_window_focused="false" android:state_enabled="true"
android:drawable="@drawable/btn_default_normal" />
<item android:state_window_focused="false" android:state_enabled="false"
android:drawable="@drawable/btn_default_normal_disable" />
<item android:state_pressed="true"
android:drawable="@drawable/btn_default_pressed" />
<item android:state_focused="true" android:state_enabled="true"
android:drawable="@drawable/btn_default_selected" />
<item android:state_enabled="true"
android:drawable="@drawable/btn_default_normal" />
<item android:state_focused="true"
android:drawable="@drawable/btn_default_normal_disable_focused" />
<item
android:drawable="@drawable/btn_default_normal_disable" />
</selector>
'Android > Tip&Tech' 카테고리의 다른 글
Android Gallery 2D , 3D effect (0) | 2011.04.15 |
---|---|
[펌]프로그레스바 투명하게 만들기.(첨부파일 있음) (0) | 2011.04.14 |
안드로이드 2.0 아이콘 디자인 Guidelines (1) - Launcher Icon [출처] 안드로이드 2.0 아이콘 디자인 Guidelines (1) - Launcher Icon|작성자 monodream (0) | 2011.04.14 |
[펌]안드로이드 ImageView 에 Pinch to zoom 추가하기 (0) | 2011.04.13 |
[펌][Android] PreferenceCategory 변경하기 (0) | 2011.04.13 |