主頁(yè) > 服務(wù)與支持 > 開(kāi)發(fā)平臺(tái) > 客戶端SDK參考 > Android UI SDK > 接口參考 發(fā)起呼叫
更新時(shí)間:2019-11-20
接口描述
該接口用于發(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ù)描述
參數(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()); } } }); |