首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

彩信发送(透过手机本身)

2012-09-07 
彩信发送(通过手机本身)private void sendMessage(){Intent intent new Intent(Intent.ACTION_SEND,Uri.

彩信发送(通过手机本身)

private void sendMessage(){    Intent intent = new Intent(Intent.ACTION_SEND,Uri.parse("mms://"));    intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);    intent.putExtra(Intent.EXTRA_STREAM, Uri.parse('file:///sdcard/image.png'));    intent.putExtra("sms_body", "发送给老婆的100字!!");    intent.putExtra("subject", "发送给老婆的100字!!");    intent.putExtra(Intent.EXTRA_TEXT, "222");    intent.setType("image/png");    intent.setClassName("com.android.mms", "com.android.mms.ui.ComposeMessageActivity");    startActivity(intent);    }

热点排行