使用特定号码启动 Android 拨号器

发布于 2024-12-14 04:23:23 字数 326 浏览 0 评论 0原文

我的代码工作得很好,但它所做的只是启动拨号器。我想要它做的是能够使用特定号码启动拨号器。我怎样才能做到这一点?

bu5.setOnClickListener(new OnClickListener() {

    public void onClick(View v) {
        //open the phone dialer on clicking the button
        Intent intent = new Intent(Intent.ACTION_DIAL);
        startActivity(intent);   
    }
}); 

The code I have works perfectly but all it does is launch the dialer. What I want it do is to be able to launch the dialer with a specific number. How can I do that?

bu5.setOnClickListener(new OnClickListener() {

    public void onClick(View v) {
        //open the phone dialer on clicking the button
        Intent intent = new Intent(Intent.ACTION_DIAL);
        startActivity(intent);   
    }
}); 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

您的好友蓝忘机已上羡 2024-12-21 04:23:23

您需要将 tel: uri 和号码设置到意图中,并将其添加到 startActivity 行之前。

intent.setData(Uri.parse("tel:1231231234"));

You need to set the tel: uri with the number into the intent, add this before the startActivity line.

intent.setData(Uri.parse("tel:1231231234"));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文