Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -58,7 +58,7 @@ public class TourClubDialogFragment extends BaseMvpDialogFragment<GiftLotteryPre
|
||||
private CountDownTimer mCountDownTimer;
|
||||
private long endTime; // 服务器返回的结束时间戳
|
||||
private String num;
|
||||
private XlhRankingDialog xlhRankingDialog;
|
||||
private NewXlhRankingDialog newXlhRankingDialog;
|
||||
private XlhRecordDialog xlhRecordDialog;
|
||||
private XlhObtainDialog xlhObtainDialog;
|
||||
|
||||
@@ -301,12 +301,12 @@ public class TourClubDialogFragment extends BaseMvpDialogFragment<GiftLotteryPre
|
||||
dialog.show();
|
||||
} else if (id == R.id.tv_bd) {
|
||||
// 如果当前dialog存在且正在显示,先关闭
|
||||
if (xlhRankingDialog != null && xlhRankingDialog.isVisible()) {
|
||||
xlhRankingDialog.dismiss();
|
||||
if (newXlhRankingDialog != null && newXlhRankingDialog.isVisible()) {
|
||||
newXlhRankingDialog.dismiss();
|
||||
}
|
||||
|
||||
xlhRankingDialog = XlhRankingDialog.newInstance(roomId,0);
|
||||
xlhRankingDialog.show(getChildFragmentManager(), "XlhRankingDialog");
|
||||
newXlhRankingDialog = NewXlhRankingDialog.newInstance(roomId);
|
||||
newXlhRankingDialog.show(getChildFragmentManager(), "newXlhRankingDialog");
|
||||
} else if (id == R.id.tv_jl) {
|
||||
// 如果当前dialog存在且正在显示,先关闭
|
||||
if (xlhRecordDialog != null && xlhRecordDialog.isVisible()) {
|
||||
@@ -542,8 +542,8 @@ public class TourClubDialogFragment extends BaseMvpDialogFragment<GiftLotteryPre
|
||||
}
|
||||
|
||||
// 如果当前dialog存在且正在显示,先关闭
|
||||
if (xlhRankingDialog != null && xlhRankingDialog.isVisible()) {
|
||||
xlhRankingDialog.dismiss();
|
||||
if (newXlhRankingDialog != null && newXlhRankingDialog.isVisible()) {
|
||||
newXlhRankingDialog.dismiss();
|
||||
}
|
||||
|
||||
if (xlhObtainDialog != null && xlhObtainDialog.isShowing()) {
|
||||
|
||||
Reference in New Issue
Block a user