我在我的活动中使用了动作呼叫来拨打我的电话。动作呼叫正常工作但是当我按下我的手机中的结束呼叫按钮时,呼叫结束,但电话一直响铃。解决方案是什么?
Intent intent = new Intent(Intent.ACTION_CALL);
String phone = "tel:" + "--------";
intent.setData(Uri.parse(phone));
startActivity(intent);