Android开发-电话和短信的调用

 

首先增加拨打电话和发短信的权限

AndroidManifest.xml

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

<uses-permission android:name=”android.permission.SEND_SMS”/>

 

调用打电话选择面板

Intent intent=new Intent(Intent.ACTION_DIAL,Uri.parse(“tel:01084888888”));

startActivity(intent);

直接拨打电话

Intent intent=new Intent(Intent.ACTION_DIAL,Uri.parse(“tel:01084888888”));

startActivity(intent);

调用发短信界面

Intent intent=new Intent(Intent.ACTION_SENDTO,Uri.parse(“sms:01084888888”));

startActivity(intent);

 

 

发表评论

你必须 登录后 才能对文章进行评论!

Design By Inzaghi | 京ICP备16047555号-1