update 随机PK 补充拒绝PK后的对话框
This commit is contained in:
parent
e28c393f88
commit
3a75e24601
@ -87,7 +87,6 @@ public class RandomPkManager {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
status = PK_STATUS_REQUEST;
|
|
||||||
sec++;
|
sec++;
|
||||||
if (sec % 60 == 0) {
|
if (sec % 60 == 0) {
|
||||||
min++;
|
min++;
|
||||||
@ -114,9 +113,10 @@ public class RandomPkManager {
|
|||||||
* 对方拒绝,开始下一轮匹配
|
* 对方拒绝,开始下一轮匹配
|
||||||
*/
|
*/
|
||||||
private void nextPk() {
|
private void nextPk() {
|
||||||
if (status != PK_STATUS_REQUEST && status != PK_STATUS_REFUSE) {
|
if (status != PK_STATUS_DEFAULT && status != PK_STATUS_REFUSE) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
status = PK_STATUS_REQUEST;
|
||||||
LiveNetManager.get(CommonAppContext.getTopActivity())
|
LiveNetManager.get(CommonAppContext.getTopActivity())
|
||||||
.randomPK(new HttpCallback<String>() {
|
.randomPK(new HttpCallback<String>() {
|
||||||
@Override
|
@Override
|
||||||
|
@ -219,6 +219,13 @@ public class RandomPkDialogFragment extends AbsDialogFragment implements View.On
|
|||||||
loadDialog = null;
|
loadDialog = null;
|
||||||
if (data.getCode() == 0) {
|
if (data.getCode() == 0) {
|
||||||
setSwitchBtn(!(boolean) mRandomPkSwitch.getTag());
|
setSwitchBtn(!(boolean) mRandomPkSwitch.getTag());
|
||||||
|
} else if (data.getCode() == 500) {
|
||||||
|
DialogUitl.showSimpleDialog(mContext, "您因拒绝随机PK,被限制关闭中", "随机PK可打开时间:" + data.getMsg(), false, new DialogUitl.SimpleCallback() {
|
||||||
|
@Override
|
||||||
|
public void onConfirmClick(Dialog dialog, String content) {
|
||||||
|
dialog.dismiss();
|
||||||
|
}
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
ToastUtil.show(data.getMsg());
|
ToastUtil.show(data.getMsg());
|
||||||
}
|
}
|
||||||
@ -257,7 +264,7 @@ public class RandomPkDialogFragment extends AbsDialogFragment implements View.On
|
|||||||
mPkBtn.setTag(true);
|
mPkBtn.setTag(true);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
ToastUtil.show("請先關閉語言連麥");
|
ToastUtil.show("請先關閉語言連麥");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -1200,10 +1200,9 @@ public class LiveRyLinkMicPkPresenter implements View.OnClickListener {
|
|||||||
((TextView) context).setText("隨機PK可打開時間:" + new SimpleDateFormat("yyyy-MM-dd HH:mm", Locale.getDefault()).format(new Date(System.currentTimeMillis() + 7200000)));//7200000ms=120m=2h
|
((TextView) context).setText("隨機PK可打開時間:" + new SimpleDateFormat("yyyy-MM-dd HH:mm", Locale.getDefault()).format(new Date(System.currentTimeMillis() + 7200000)));//7200000ms=120m=2h
|
||||||
((TextView) context).setTextSize(12);
|
((TextView) context).setTextSize(12);
|
||||||
((TextView) context).setTextColor(Color.parseColor("#999999"));
|
((TextView) context).setTextColor(Color.parseColor("#999999"));
|
||||||
|
refusePk(u);
|
||||||
cancelBtn.setVisibility(View.GONE);
|
cancelBtn.setVisibility(View.GONE);
|
||||||
confirmBtn.setOnClickListener(v -> {
|
confirmBtn.setOnClickListener(v -> {
|
||||||
refusePk(u);
|
|
||||||
dialog.dismiss();
|
dialog.dismiss();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user