首先增加拨打电话和发短信的权限
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);
原创文章如转载请注明:
你必须 登录后 才能对文章进行评论!