用以上代码碰到的问题:
- 在MIUI下无法取到照片数据,跟踪发现data.getExtras()为空,之后使用BitmapFactory.decodeFile()方法解决;
- 手机上测试没有保存图片,跟踪发现data为null,继续Google,找到以下代码
1 |
Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); |
2 |
Uri uri = Uri.fromFile(new File(imagePath)); |
3 |
intent.putExtra(MediaStore.EXTRA_OUTPUT,uri); |
4 |
startActivityForResult(intent,RESULT_CAPTURE_IMAGE); |
将按钮onClick方法中采用以上代码,调用系统拍照并确定之后,无法返回程序Activity。继续Google,终于找到解决办法,代码如下(在 if(resultCode == RESULT_OK)里面)
02 |
File file = new File(imagePath); |
03 |
bitmap = BitmapFactory.decodeFile(file.getAbsolutePath()); |
05 |
Toast.makeText(this,R.string.image_save_error,Toast.LENGTH_LONG).show(); |
08 |
BufferOutputStream bos = new BufferOutputStream(new FileOutputStream(file)); |
09 |
bitmap.compress(Bitmap.CompressFormat.JPEG,80,bos); |
12 |
}catch(FileNotFoundException e) { |
14 |
}catch(IOException e) { |
17 |
super.onActivityResult(requestCode,resultCode,data); |
阅读全文……