lozn00/giftanim

礼物出现先后顺序错乱

Closed this issue · 0 comments

我先送的礼物。后显示,后送的礼物先显示。在礼物出现一次显示不了的时候会出现。
if (!allowAcrossAnimBug)
{
if (mLayoutAniming || System.currentTimeMillis() - mCurrentLayoutAnimEndTime < mLayoutAnimTime)
{
Log.w(TAG, "布局动画尚未结束 进行循环等待中..");
postDelayed(new Runnable()
{
@OverRide
public void run()
{
if (mLayoutAniming || System.currentTimeMillis() - mCurrentLayoutAnimEndTime < mLayoutAnimTime)
{
postDelayed(this, 200);
}
else
{
Log.w(TAG, "布局动画等待结束了开始新的礼物动画.");
showNewGift(context, userInfo, giftModel);
}
}
}, 200);
return;
}
}
这里这么写。会不会出现顺序不对的情况??