清晰度选择提示弹窗问题修复

This commit is contained in:
18401019693 2023-05-17 13:36:15 +08:00
parent 8611817a6a
commit 2a6af7c165

View File

@ -48,8 +48,13 @@ public class HintCustomPopup extends CenterPopupView {
TextView contestText = findViewById(R.id.contest);
liveOpenCancel = findViewById(R.id.live_open_cancel);
liveOpenOk = findViewById(R.id.live_open_ok);
if (!TextUtils.isEmpty(openOk)) {
liveOpenOk.setText(openOk);
}
if (!TextUtils.isEmpty(openCancel)) {
liveOpenCancel.setText(openCancel);
}
if (!TextUtils.isEmpty(title)) {
titleText.setText(title);
}