通知バーの「すべてクリア」ボタンをクリックしたときに発生するのと同じ種類のアニメーションを実装しようとしています:
これは私が今持っているものです(の場合ListView
)が、正しく機能していません。タイミング/一時停止のためだと思います。
Animation animation = AnimationUtils.loadAnimation(getActivity(), android.R.anim.slide_out_right);
animation.setDuration(300);
int count = mNotificationList.getCount();
for (int i = 0; i < count; i++) {
View view = mNotificationList.getChildAt(i);
if (view != null)
view.startAnimation(animation);
}
誰もがアニメーションを達成する方法を知っていますか?