<< Git 常用命令详解(二) - IT-Homer - 博客频道 - CSDN.NET | 首页 | Android压缩图片到100K以下并保持不失真的高效方法 - feicien的博客 - eoe移动开发者社区 >>

Android 调用系统拍照 笔记 - 会说话的哑巴的个人页面 - 开源中国社区

用以上代码碰到的问题:

 

  1. 在MIUI下无法取到照片数据,跟踪发现data.getExtras()为空,之后使用BitmapFactory.decodeFile()方法解决;    
  2. 手机上测试没有保存图片,跟踪发现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)里面)

 

 

01 Bitmap bitmap = null;
02 File file = new File(imagePath);
03 bitmap = BitmapFactory.decodeFile(file.getAbsolutePath());
04 if(bitmap == null) {
05      Toast.makeText(this,R.string.image_save_error,Toast.LENGTH_LONG).show();
06 }
07 try {
08     BufferOutputStream bos = new BufferOutputStream(new FileOutputStream(file));
09     bitmap.compress(Bitmap.CompressFormat.JPEG,80,bos);
10     bos.flush();
11     bos.close();
12 }catch(FileNotFoundException e) {
13     e.printStackTrace();
14 }catch(IOException e) {
15     e.printStackTrace();
16 }
17 super.onActivityResult(requestCode,resultCode,data);

 

  

阅读全文……

标签 : ,



发表评论 发送引用通报