摘要: //存储路径uri的获得 1 Intent intent = getIntent(); 2 Bundle myExtras = intent.getExtras(); 3 4 long requestedSizeLimit = 0; 5 if (mIsVideoCaptureIntent && myExtras != null) { 6 Uri saveUri = (Uri) myExtras.getParcelable(MediaStore.EXTRA_OUTPUT); 7 Log.e(TAG... 阅读全文
posted @ 2013-04-18 15:48 有情怀的人 阅读(394) 评论(0) 推荐(0)