2012-09-25 98 views

回答

1

首先將圖像保存在SD卡中,然後使用下面的代碼來打開MMS應用程序發送保存的圖像:

Intent sendIntent = new Intent(Intent.ACTION_SEND); 
sendIntent.putExtra("sms_body", "some text"); 
sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(url));//put the uri of your image here 
sendIntent.setType("image/png"); 

更多信息閱讀this link

閱讀this link以編程方式發送彩信。

+0

謝謝Praful .. – AB1209

+0

嗨Praful我正面臨一個問題。請檢查http://stackoverflow.com/questions/12615136/issue-on-sending-mms-in-android-version-4-0-3 – AB1209