Recent Posts
Recent Comments
반응형
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
Archives
Today
Total
관리 메뉴

오늘도 공부

stateListDrawable 본문

Android/Tip&Tech

stateListDrawable

행복한 수지아빠 2011. 6. 17. 12:59
반응형

StateListDrawable drawables = new StateListDrawable();

             drawables.addState(new int[]{-android.R.attr.state_checked, -android.R.attr.state_focused },  backgroundOff);

             drawables.addState(new int[]{android.R.attr.state_checked },     backgroundOn);

             drawables.addState(new int[]{android.R.attr.state_focused },     backgroundOn);

             setBackgroundDrawable(drawables);

 

StateListDrawable을 어떤 뷰까지 쓸 수 있는지는 모르겠는데 일단 버튼류는 다 되는 듯 하니 참고하세요. (ButtonEx도 이걸로 바꿨음)

반응형