panlili2024
2024-11-13 848cbfebefab08cc49b0285155edb84463aed862
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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);
 
}