启动具有特定号码的Android拨号程序

时间:2011-11-08 23:58:03

标签: android android-intent phone-number phone-call

我的代码完美无缺,但它所做的就是启动拨号器。我想要的是能够启动具有特定号码的拨号器。我怎么能这样做?

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);   
    }
}); 

1 个答案:

答案 0 :(得分:2)

您需要将tel:uri与数字一起设置到intent中,在startActivity行之前添加它。

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