我的代码完美无缺,但它所做的就是启动拨号器。我想要的是能够启动具有特定号码的拨号器。我怎么能这样做?
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);
}
});
答案 0 :(得分:2)
您需要将tel:uri与数字一起设置到intent中,在startActivity行之前添加它。
intent.setData(Uri.parse("tel:1231231234"));