如何通过我的Android应用程序拨打电话号码?

时间:2015-10-22 03:32:09

标签: android android-activity android-studio

我在列表视图中创建了一个包含紧急号码的简单应用程序,我想要做的是当我点击列表视图中的联系人时我可以拨打电话号码

3 个答案:

答案 0 :(得分:1)

这是一个关于如何拨打号码123456789的示例。

Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:123456789"));
startActivity(intent);

将它放在listView的OnItemClickListener()方法中。 希望能帮到你。

答案 1 :(得分:1)

在按钮下点击

    String number = "123456789";//mobile number
    Intent intent = new Intent(Intent.ACTION_CALL);
    intent.setData(Uri.parse("tel:" +number));
    startActivity(intent)

答案 2 :(得分:1)

 String mono = "9876543210";//mobile number
    Intent intent = new Intent(Intent.ACTION_CALL);
    intent.setData(Uri.parse("tel:" +mono));
    startActivity(intent);

在Manifest中设置权限CALL_PHONE