¡@

Home 

2014/10/16 ¤W¤È 08:21:26

android Programming Glossary: picfile

Get attachment from unread MMS messages

http://stackoverflow.com/questions/7115939/get-attachment-from-unread-mms-messages

_data Uri partURI Uri.parse content mms part _id String filePath sdcard photo.jpg InputStream is null OutputStream picFile null Bitmap bitmap null try is getContentResolver .openInputStream partURI bitmap BitmapFactory.decodeStream is picFile.. null Bitmap bitmap null try is getContentResolver .openInputStream partURI bitmap BitmapFactory.decodeStream is picFile new FileOutputStream filePath bitmap.compress Bitmap.CompressFormat.JPEG 100 picFile picFile.flush picFile.close catch.. BitmapFactory.decodeStream is picFile new FileOutputStream filePath bitmap.compress Bitmap.CompressFormat.JPEG 100 picFile picFile.flush picFile.close catch Exception e e.printStackTrace throw new MmsException e android attachment mms share..