不知楼主这个问题解决了没有?如果解决的方便把代码发给我一份吗?邮箱[email protected]

解决方案 »

  1.   

    没做过,猜一下:
    响应每个item的Click事件时,得到要动画的按钮,对它做一个动画集,包括一个alpha动画和一个scale动画。动画要求FillAfter=true,这样动画结束后可以保持状态。正规点可以自定义一个Button,把操作封装一下。
      

  2.   

    对按钮的监听好像需要啊adapter里面加载布局的时候实现,然后像楼上说的对它做一个动画集,点击按钮的时候就可以实现监听。
      

  3.   

    给你看下这几句的参考,我做的效果是 从无到有  你改下动画就行了
    mGridView.setLayoutAnimation(getAnimationController());protected LayoutAnimationController getAnimationController(){
             LayoutAnimationController controller;
             Animation anim = new ScaleAnimation(0.0f, 1.0f, 0.0f, 1.0f,
                     Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);//从0.5倍放大到1倍
             anim.setDuration(500);
             controller=new LayoutAnimationController(anim,0.1f);
             controller.setOrder(LayoutAnimationController.ORDER_NORMAL); 
             return controller; 
    }