changed the callchat impl and update
This commit is contained in:
@@ -1,107 +0,0 @@
|
||||
package com.mogo.module.service.marker;
|
||||
|
||||
|
||||
import com.zhidao.carchattingprovider.ICallProviderResponse;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
|
||||
/**
|
||||
* @author congtaowang
|
||||
* @since 2020/9/28
|
||||
*
|
||||
* 描述
|
||||
*/
|
||||
public abstract class CallProviderResponseImpl implements ICallProviderResponse {
|
||||
|
||||
@Override
|
||||
public void addFriend( boolean b ) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void callInvokeError( @NotNull String s ) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void callWindowStatus( boolean b ) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void canCall( boolean b ) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void hideUserWindowError( @NotNull String s ) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void invisibleUser( boolean b ) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void isFriend( boolean b ) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void isOnLine( boolean b, @Nullable String s ) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void userInfoCallBack( @Nullable String s, @Nullable String s1 ) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void userWindowStatus( boolean b ) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void call( @NotNull String s ) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void cancelMatch( boolean b ) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void error( @NotNull String s ) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void hangUp( boolean b ) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void invokeCallData( @NotNull String s ) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void match( @NotNull String s ) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void matchInvokeResult( boolean b, @NotNull String s ) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void mute( boolean b ) {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -42,6 +42,7 @@ import com.mogo.utils.ThreadPoolService;
|
||||
import com.mogo.utils.UiThreadHandler;
|
||||
import com.mogo.utils.WorkThreadHandler;
|
||||
import com.mogo.utils.logger.Logger;
|
||||
import com.zhidao.carchattingprovider.ICallChatResponse;
|
||||
|
||||
import org.json.JSONArray;
|
||||
import org.json.JSONException;
|
||||
@@ -112,7 +113,7 @@ public class MapMarkerManager implements IMogoMarkerClickListener,
|
||||
MarkerServiceHandler.getActionManager().registerBizActionDoneListener( this );
|
||||
MarkerServiceHandler.getApis().getRegisterCenterApi().registerADASControlStatusChangedListener( TAG, this );
|
||||
|
||||
CallChatApi.getInstance().getApiProvider().registerUserWindowStatusListener( TAG, mContext, new CallProviderResponseImpl() {
|
||||
CallChatApi.getInstance().getApiProvider().registerUserWindowStatusListener( TAG, mContext, new ICallChatResponse() {
|
||||
|
||||
@Override
|
||||
public void userWindowStatus( boolean show ) {
|
||||
|
||||
Reference in New Issue
Block a user