• 博客(0)
  • 资源 (1)

空空如也

java的1000个常用类

/** * Sets up this AnimatorSet to play each of the supplied animations when the previous animation ends. * @param items The animations that will be started one after another. */ public void playSequentially(List<Animator> items){ if (items != null && items.size() > 0) { mNeedsSort=true; if (items.size() == 1) { play(items.get(0)); } else { for (int i=0; i < items.size() - 1; ++i) { play(items.get(i)).before(items.get(i + 1)); } } } }

2015-05-23

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除