Intent 关于发短信和打电话的要求
发送短信
Intent intent = new Intent(Intent.ACTION_SENDTO, Uri.parse("smsto:5555")) ;
intent.putExtra("sms_body" , "welcome") ;
startActivity(intent);
XML:
<uses-permission android:name="android.permission.SEND_SMS"/>
拨打电话
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:5555")) ;
intent.putExtra("sms_body" , "welcome") ;
startActivity(intent);
XML:
<uses-permission android:name="android.permission.CALL_PHONE"/>
浙公网安备 33010602011771号