代码实现selector

虽然在res/drawable/下添加一个xml去实现某个button或者grid的selecto非常简单省事,如:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" android:drawable="@drawable/focused_application_background" />
    <item android:state_focused="true" android:drawable="@drawable/focused_application_background" />
    <item android:state_focused="true" android:state_window_focused="true" android:drawable="@drawable/focused_application_background" />
    <item android:drawable="@drawable/nomal_application_background" />
</selector>

但是,如果你的app需要换肤,这样种做法就行不通,只能通过代码的方式实现。
以上xml翻译成代码如下:

private StateListDrawable crateSelector(){
        createDrawable();
        final Drawable background = mWBCachedD_background.get();
        final Drawable background_f = mWBCachedD_background_f.get();
        final StateListDrawable drawable=new StateListDrawable();  
        drawable.addState(new int []{android.R.attr.state_pressed}, background_f );  
        drawable.addState(new int []{android.R.attr.state_focused}, background_f );  
        drawable.addState(new int []{android.R.attr.state_pressed , android.R.attr.state_window_focused}, background_f ); 
        drawable.addState(new int []{}, background); 
        return drawable;
    }


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值