我想在点击按钮时直接拨打电话。我想直接拨打电话而不去拨号器。点击按钮我想立即开始通话。 我目前正在使用以下代码。请帮助我。
startActivity(new Intent(Intent.ACTION_DIAL, Uri.fromParts("tel", list.get(position).getMobile(), null)));
答案 0 :(得分:1)
您应该在清单
中添加此权限<uses-permission android:name="android.permission.CALL_PHONE" />
并且还要求获得5以上android的运行时许可
并将ACTION_DIAL更改为ACTION_CALL
startActivity(new Intent(Intent.ACTION_CALL, Uri.fromParts("tel", list.get(position).getMobile(), null)));