如何添加拨号号码并按“呼叫”底部?

how to add a dial number and press the `call` bottom?

我想触发一个打开拨号器添加号码然后

的意图

call底。

有什么方法可以做 press 底部吗?

private void SendDialIntent() {
    Intent intent = new Intent(Intent.ACTION_DIAL);
    intent.setData(Uri.parse("tel:" + phone.phone));
    startActivity(intent);
}

你不能"press the call button"。您可以使用 ACTION_CALL(而不是 ACTION_DIAL),这将直接发出 phone 调用。这需要 CALL_PHONE 许可并且不适用于紧急号码(例如美国的 911)。