android中拨打电话的事件

来源:互联网 发布:剑三血痕成男捏脸数据 编辑:程序博客网 时间:2024/05/01 20:34

1. 首先在AndroidManifest.xml中添加拨打电话的权限

<uses-permission android:name="android.permission.CALL_PHONE"/>


2.在onclick方法中:

//获取电话号码String number = editText_number.getText().toString();Intent intent = new Intent();Intent.setAction(Intent.ACTION_CALL);Intent.setData(Uri.parse(“tel:”+number));startActivity(intent);


1 0
原创粉丝点击