添加跳转动画
This commit is contained in:
@@ -23,6 +23,8 @@ import com.xscm.moduleutil.activity.IPresenter;
|
||||
import com.xscm.moduleutil.activity.IView;
|
||||
|
||||
import org.greenrobot.eventbus.EventBus;
|
||||
import org.greenrobot.eventbus.Subscribe;
|
||||
import org.greenrobot.eventbus.ThreadMode;
|
||||
|
||||
/**
|
||||
*@author qx
|
||||
@@ -72,6 +74,11 @@ public abstract class BaseMvpDialogFragment<P extends IPresenter, VDM extends Vi
|
||||
EventBus.getDefault().register(this);
|
||||
}
|
||||
|
||||
@Subscribe(threadMode = ThreadMode.MAIN)
|
||||
public void onEvent(Object event){
|
||||
|
||||
}
|
||||
|
||||
|
||||
public void initArgs(Bundle arguments) {
|
||||
|
||||
|
||||
@@ -1,10 +1,12 @@
|
||||
package com.xscm.moduleutil.bean.room;
|
||||
|
||||
|
||||
import com.xscm.moduleutil.BaseEvent;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class RoomUpPitBean {
|
||||
public class RoomUpPitBean extends BaseEvent {
|
||||
private String id;
|
||||
private String room_id;
|
||||
private String user_id;
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
package com.xscm.moduleutil.bean.room;
|
||||
|
||||
import com.xscm.moduleutil.BaseEvent;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
@@ -7,7 +9,7 @@ import lombok.NoArgsConstructor;
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class RoomUserJoinModel {
|
||||
public class RoomUserJoinModel extends BaseEvent {
|
||||
|
||||
private String room_id;
|
||||
private String user_id;
|
||||
|
||||
@@ -343,15 +343,6 @@ public class MessageListenerSingleton {
|
||||
joinLatch.countDown();
|
||||
// 标记房间已加入
|
||||
markRoomJoined(roomId);
|
||||
|
||||
|
||||
|
||||
// // 发送加入成功的事件
|
||||
// mainHandler.post(() -> {
|
||||
// RoomMessageEvent.T t = new RoomMessageEvent.T();
|
||||
// t.setText("成功加入房间");
|
||||
// notifyMessageReceived(new RoomMessageEvent(1000, roomId, t));
|
||||
// });
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -24,7 +24,7 @@ public enum EnvironmentEnum {
|
||||
"midi01",
|
||||
"https://midi01.oss-cn-beijing.aliyuncs.com/",
|
||||
"wxc7681513be9f926b",
|
||||
1600096890,
|
||||
1600106397,
|
||||
"02f7339ec98947deaeab173599891932",
|
||||
"tcp://1.13.181.248",
|
||||
"https://tmd.xscmmidi.site/h5");
|
||||
|
||||
Reference in New Issue
Block a user