Android 快速调用系统自带程序发送彩信实现


把自己学习的记录下来,不但让自己做做笔记,也可一让大家多给点建议....

 

实现,快速调用系统自带的彩信发送功能(个人感觉这样挺好的,不需要另外去自己写发送功能,浪费资源)

 

实现过程:

                                Intent sendMSGIntent = new Intent(Intent.ACTION_SEND);           
				sendMSGIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);          
				//sendMSGIntent.putExtra("address", "10086");
				//sendMSGIntent.putExtra("subject", "发送彩信");
				//sendMSGIntent.putExtra("sms_body", "this is mms send auto ");
				sendMSGIntent.putExtra("compose_mode", false);
				sendMSGIntent.putExtra("exit_on_sent", true);
                                //添加照片等附件
                                sendMSGIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(dirPath)));//dirPath为一个sdcard地址如:"/sdcard/Myshares/Myphotos/m.jpg"
				sendMSGIntent.setClassName("com.android.mms", "com.android.mms.ui.ComposeMessageActivity");
				//设置文件类型
                                sendMSGIntent.setType("image/jpeg");
	                        //开启发送彩信的页面 
				startActivity(sendMSGIntent);

你可能感兴趣的:(android,彩信功能)