当前位置: 代码迷 >> Android >> Android开发回来拍摄的图片
  详细解决方案

Android开发回来拍摄的图片

热度:6   发布时间:2016-05-01 19:25:21.0
Android开发返回拍摄的图片

第一步

try {     Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);     startActivityForResult(intent, 0);} catch (ActivityNotFoundException e) {     // Do nothing for now}
?

第一步

@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) {  try {   if (requestCode != 0) {    return;   }   super.onActivityResult(requestCode, resultCode, data);   Bundle extras = data.getExtras();   Bitmap b = (Bitmap) extras.get("data");   //      //   ImageView a = (ImageView)findViewById(R.id.imageView1);   a.setImageBitmap(b);   //   /*    * 得到图片对图片处理...    */  } catch (Exception e) {   // TODO: handle exception   System.out.println(e.getMessage());  } }
?

?

  相关解决方案