package com.hdl.hdllinphonesdk.callback;
|
|
import android.graphics.Bitmap;
|
|
/**
|
* Created by jlchen on 2021/8/4.
|
*/
|
public interface OnHDLLinphoneCallListener {
|
/**
|
* 接听回调
|
*/
|
void onAnswerAction();
|
/**
|
* 拒接来电回调
|
*/
|
void onRejectCallAction();
|
/**
|
* 拒接全部回调
|
*/
|
void onRejectCallAllAction();
|
/**
|
* 开锁回调
|
*/
|
void onUnlockAction();
|
/**
|
* 挂断(通话结束)
|
*/
|
void onHangUpAction(int callDuration);
|
/**
|
* 通话视频截图上传
|
*/
|
void onScreenshotSuccessfulAction(Bitmap image);
|
|
/**
|
* 来电中
|
*/
|
void onIncomingCall(String username);
|
|
}
|