3

我创建动画,在动画开始时,我正在更改某些按钮的样式,然后在动画结束时,我将按钮样式更改回其以前的样式,但这并没有发生,它仍然显示设置的相同样式在 onAnimationStart() 一切看起来都很好,控件也在 onActionEnd() 中循环,但按钮样式仍然没有更新。请帮忙

public void WrongAnim()
{

    AlphaAnimation animation = new AlphaAnimation(1, 0.5f);
    //animation.setRepeatCount(1);
    animation.setDuration(2000);

    animation.setAnimationListener(new AnimationListener(){

        @Override
        public void onAnimationEnd(Animation arg0) {
            // TODO Auto-generated method stub
            Log.v("Wronganim", "end...");
            for(int i=0; i<input_boxes.size(); i++)
            {
                input_boxes.get(i).getBox().setTextAppearance(context, R.style.textstyle);
            }
        }

        @Override
        public void onAnimationRepeat(Animation arg0) {
            // TODO Auto-generated method stub

        }

        @Override
        public void onAnimationStart(Animation arg0) {
            // TODO Auto-generated method stub
            Log.v("Wronganim", "start......");
            for(int i=0; i<input_boxes.size(); i++)
            {
                input_boxes.get(i).getBox().setTextAppearance(context, R.style.redtext);
            }
        }

    });

    inputbar.startAnimation(animation); //lienar layout inflate from xml

}
4

0 回答 0