摘要: Android 使用MMS彩信或者Gmail发送图片Intent i = new Intent(Intent.ACTION_SEND); i.putExtra(Intent.EXTRA_STREAM,imageUri);//这里必须是图片的uri i.setType("image/jpeg"); startActivity(Intent.createChooser(i,TITLE_TIP));//TITLE_TIP是弹出的选择程序处理的文字标题==================================================Android 使用短信或者Gm 阅读全文
posted @ 2012-02-13 16:50 Lee_Alvin 阅读(193) 评论(0) 推荐(0) 编辑