在 actionbar customview imagebutton 中刷新动画
Refresh animation in actionbar customview imagebutton
我通过演示创建了一个应用程序。该应用程序启用了操作栏。它在顶部包含自定义视图,在底部包含动作视图项目。在顶部自定义视图中,有一个图像按钮。单击图像按钮时,我想要圆角动画(刷新动画)。有解决办法吗?
终于找到解决办法了
imageButton = (ImageButton) mCustomView.findViewById(R.id.imageButton);
动画开始
RotateAnimation rotate = new RotateAnimation(0,360,
Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
rotate.setDuration(1000);
rotate.setRepeatCount(Animation.INFINITE);
rotate.setRepeatMode(Animation.INFINITE);
rotate.setInterpolator(new LinearInterpolator());
imageButton.startAnimation(rotate);
动画停止
imageButton.clearAnimation();
我通过演示创建了一个应用程序。该应用程序启用了操作栏。它在顶部包含自定义视图,在底部包含动作视图项目。在顶部自定义视图中,有一个图像按钮。单击图像按钮时,我想要圆角动画(刷新动画)。有解决办法吗?
终于找到解决办法了
imageButton = (ImageButton) mCustomView.findViewById(R.id.imageButton);
动画开始
RotateAnimation rotate = new RotateAnimation(0,360,
Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
rotate.setDuration(1000);
rotate.setRepeatCount(Animation.INFINITE);
rotate.setRepeatMode(Animation.INFINITE);
rotate.setInterpolator(new LinearInterpolator());
imageButton.startAnimation(rotate);
动画停止
imageButton.clearAnimation();