使用特定号码启动 Android 拨号器
我的代码工作得很好,但它所做的只是启动拨号器。我想要它做的是能够使用特定号码启动拨号器。我怎样才能做到这一点?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将 tel: uri 和号码设置到意图中,并将其添加到 startActivity 行之前。
You need to set the tel: uri with the number into the intent, add this before the startActivity line.