我正在尝试通过使用有效用户 ID 更改 android HelloMonkey 几天来拨打电话,当我拨打电话时出现错误“拨打电话时帐户 SID 不能为空”我的代码就像
public void connect(String phoneNumber) {
Map<String, String> parameters = new HashMap<String, String>();
parameters.put("PhoneNumber", phoneNumber);
if (device == null){
Log.w("", "Failed device == null");
}else{
Log.w("", "device != null");
}
connection = device.connect(parameters, null /* ConnectionListener */);
if (connection == null)
Log.w(TAG, "Failed to create new connection");
}
什么都没有找到 null
请帮忙。提前致谢