修复:多人Pk结束动画问题
This commit is contained in:
parent
f024283e80
commit
869ad9adf7
@ -295,7 +295,8 @@ public class SocketRyClient {
|
||||
}
|
||||
|
||||
} else if (action3 == 5) {
|
||||
// endDRGif();
|
||||
EventBus.getDefault().post(new LiveAudienceEvent()
|
||||
.setType(LiveAudienceEvent.LiveAudienceType.PK_TIME_COUNT));
|
||||
LiveRoomViewHolder.d_pk_view.setVisibility(View.GONE);
|
||||
if (LiveRyAnchorActivity.mLiveAnchorViewHolder != null) {
|
||||
dr_pk_view.setVisibility(View.GONE);
|
||||
|
@ -331,6 +331,7 @@ public class LiveRoomViewHolder extends AbsViewHolder implements View.OnClickLis
|
||||
//全服通知
|
||||
private ImageView customFullServiceNotify;
|
||||
|
||||
|
||||
public LiveRoomViewHolder(boolean isRys, int forActivity, Context context, ViewGroup parentView, GifImageView gifImageView, SVGAImageView svgaImageView, ViewGroup liveGiftPrizePoolContainer, WindowManager windowManager) {
|
||||
super(context, parentView);
|
||||
Contexts = context;
|
||||
@ -434,7 +435,7 @@ public class LiveRoomViewHolder extends AbsViewHolder implements View.OnClickLis
|
||||
/**
|
||||
* pk时间倒计时
|
||||
*/
|
||||
public static void changePkTime() {
|
||||
public void changePkTime() {
|
||||
Log.i("tvt", mPkTimeCount + "");
|
||||
mPkTimeCount--;
|
||||
if (mPkTimeCount > 0) {//
|
||||
@ -449,34 +450,37 @@ public class LiveRoomViewHolder extends AbsViewHolder implements View.OnClickLis
|
||||
if (mHandler != null) {
|
||||
mHandler.removeCallbacksAndMessages(null);
|
||||
}
|
||||
// endDRGif();
|
||||
endDRGif();
|
||||
}
|
||||
}
|
||||
|
||||
public void endDRGif() {
|
||||
dr_pk_end_gif.setVisibility(View.VISIBLE);
|
||||
RequestOptions options = new RequestOptions().skipMemoryCache(true);//配置
|
||||
Glide.with(Contexts).asGif()
|
||||
.apply(options)//应用配置
|
||||
.load(R.mipmap.drpkend)
|
||||
.listener(new RequestListener<GifDrawable>() {
|
||||
@Override
|
||||
public boolean onLoadFailed(@Nullable GlideException e, Object model, Target<GifDrawable> target, boolean isFirstResource) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onResourceReady(GifDrawable resource, Object model, Target<GifDrawable> target, DataSource dataSource, boolean isFirstResource) {
|
||||
if (resource instanceof GifDrawable) {
|
||||
resource.setLoopCount(1);//只播放一次
|
||||
if (dr_pk_end_gif.getVisibility() == View.GONE) {
|
||||
dr_pk_end_gif.setVisibility(View.VISIBLE);
|
||||
RequestOptions options = new RequestOptions().skipMemoryCache(true);//配置
|
||||
Glide.with(Contexts).asGif()
|
||||
.apply(options)//应用配置
|
||||
.load(R.mipmap.drpkend)
|
||||
.listener(new RequestListener<GifDrawable>() {
|
||||
@Override
|
||||
public boolean onLoadFailed(@Nullable GlideException e, Object model, Target<GifDrawable> target, boolean isFirstResource) {
|
||||
return false;
|
||||
}
|
||||
//发送延时消息,通知动画结束
|
||||
mHandler.sendEmptyMessageDelayed(1,
|
||||
3000);
|
||||
return false;
|
||||
}
|
||||
})
|
||||
.into(dr_pk_end_gif);
|
||||
|
||||
@Override
|
||||
public boolean onResourceReady(GifDrawable resource, Object model, Target<GifDrawable> target, DataSource dataSource, boolean isFirstResource) {
|
||||
if (resource instanceof GifDrawable) {
|
||||
resource.setLoopCount(1);//只播放一次
|
||||
}
|
||||
//发送延时消息,通知动画结束
|
||||
mHandler.sendEmptyMessageDelayed(1,
|
||||
3000);
|
||||
return false;
|
||||
}
|
||||
})
|
||||
.into(dr_pk_end_gif);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -491,7 +495,7 @@ public class LiveRoomViewHolder extends AbsViewHolder implements View.OnClickLis
|
||||
d_pk_view.setVisibility(View.VISIBLE);
|
||||
if (time != 0) {
|
||||
mPkTimeCount = time;
|
||||
changePkTime();
|
||||
mHandler.sendEmptyMessageAtTime(WHAT_PK_TIME, getNextSecondTime());
|
||||
}
|
||||
|
||||
|
||||
@ -644,7 +648,7 @@ public class LiveRoomViewHolder extends AbsViewHolder implements View.OnClickLis
|
||||
img.setImageResource(R.mipmap.icon_no4);
|
||||
} else if (j == 5) {
|
||||
img.setImageResource(R.mipmap.icon_no5);
|
||||
}else {
|
||||
} else {
|
||||
img.setImageResource(R.mipmap.icon_no1);
|
||||
}
|
||||
|
||||
@ -3805,6 +3809,9 @@ public class LiveRoomViewHolder extends AbsViewHolder implements View.OnClickLis
|
||||
case CUSTOM_FULL_SERVICE_NOTIFY:
|
||||
customFullServiceNotify(event.getCustomFullServiceNotifyEvent());
|
||||
break;
|
||||
case PK_TIME_COUNT:
|
||||
endDRGif();
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
@ -3829,7 +3836,7 @@ public class LiveRoomViewHolder extends AbsViewHolder implements View.OnClickLis
|
||||
}
|
||||
customFullServiceNotify.startAnimation(inAlphaAnimation);
|
||||
customFullServiceNotify.setVisibility(View.VISIBLE);
|
||||
ImgLoader.display(mContext,customFullServiceNotifyEvent.getImg(),customFullServiceNotify);
|
||||
ImgLoader.display(mContext, customFullServiceNotifyEvent.getImg(), customFullServiceNotify);
|
||||
customFullHandler.postDelayed(customFullRunnable, handlerDuration * 1000);
|
||||
} else {//文字通知
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user