修复点系统通知时弹出了画质选项框
This commit is contained in:
parent
3606815a41
commit
418d306d72
@ -129,7 +129,7 @@ public class CustomDrawerPopupView extends DrawerPopupView {
|
||||
public void onViewClicks() {
|
||||
dismiss();
|
||||
if (callBack != null) {
|
||||
callBack.systemNotice();
|
||||
callBack.changeVideo();
|
||||
}
|
||||
|
||||
|
||||
@ -198,6 +198,8 @@ public class CustomDrawerPopupView extends DrawerPopupView {
|
||||
|
||||
void systemNotice();
|
||||
|
||||
void changeVideo();
|
||||
|
||||
void online();
|
||||
|
||||
void reportLayout();
|
||||
|
@ -877,6 +877,13 @@ public class LiveAudienceActivity extends LiveActivity {
|
||||
|
||||
@Override
|
||||
public void systemNotice() {
|
||||
Bus.get().post(new LiveAudienceEvent()
|
||||
.setBean(mLiveBean)
|
||||
.setType(LiveAudienceEvent.LiveAudienceType.NOTICE));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void changeVideo() {
|
||||
Bus.get().post(new LiveAudienceEvent()
|
||||
.setBean(mLiveBean)
|
||||
.setType(LiveAudienceEvent.LiveAudienceType.LIVE_VIDEO));
|
||||
|
Loading…
Reference in New Issue
Block a user