暖暖视频免费观**,国产免费美女被艹视频,毛片一级毛片,不卡三级

智慧服務(wù),成就美好體驗(yàn) 項(xiàng)目咨詢

主頁(yè) > 服務(wù)與支持 > 開(kāi)發(fā)平臺(tái) > 客戶端SDK參考 > Android UI SDK > 接口參考 發(fā)起呼叫

入門使用

發(fā)起呼叫

更新時(shí)間:2019-11-20

clmCall

接口描述

該接口用于發(fā)起呼叫

注意事項(xiàng)

無(wú)。

方法定義

 /**
     * 發(fā)起呼叫
     * @param number 呼叫號(hào)碼 與account 二選一
     * @param account 呼叫賬號(hào) 與number 二選一
     * @param isVideo 是否發(fā)起視頻呼叫
     * @param handler 回調(diào)對(duì)象
     */
  void clmCall(String number,String account, boolean isVideo, CLMCompleteHandler handler);
 

參數(shù)描述

表1 參數(shù)說(shuō)明

參數(shù)

是否必須

類型

描述

number

String

被呼叫號(hào)碼

account

String

被呼賬號(hào)

isVideo

boolean

是否視頻呼叫,true 視頻, false 音頻

handler

CLMCompleteHandler

回調(diào)

返回值

無(wú)。

代碼示例

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
        String number = "12345";
        String account = "hwyf";
        boolean isVideo = false;
        CloudLinkSDK.getOpenApi().clmCall(number,account, isVideo, new CLMCompleteHandler() {
            @Override
            public void onCompleted(CLMResult result) {
                if (result.getCode() == 0){
                    Log.i(TAG,"call success");
                }else {
                    Log.i(TAG, "call fail:" + result.getMessage());
                    DemoUtil.showToast(getContext(), "呼叫失敗:"+ result.getMessage());
                }
            }
        });