Animate selector/state transitions

后端 未结 4 981
一生所求
一生所求 2021-02-01 14:19

I have a simple selector for my ListView




        
4条回答
  •  孤城傲影
    2021-02-01 14:35

    Is it the fade you want?

    I guess it would be the same as how a textSwitcher works, maybe you want to change it to a ViewSwitcher instead, the fade is done pro-grammatically


    Animation in = AnimationUtils.loadAnimation(this,
                    android.R.anim.fade_in);
            Animation out = AnimationUtils.loadAnimation(this,
                    android.R.anim.fade_out);
    
            mSwitcher1.setInAnimation(in);
            mSwitcher1.setOutAnimation(out); 
    

提交回复
热议问题