Android相机:数据意图返回null

我有一个包含多个活动的Android应用程序。

在其中一个我使用的button,将调用设备相机:

public void onClick(View view) { Intent photoIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(photoIntent, IMAGE_CAPTURE); } 

在同一个活动中,我为图像结果调用OnActivityResult方法:

 @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { if (requestCode == IMAGE_CAPTURE) { if (resultCode == RESULT_OK) { Bitmap image = (Bitmap) data.getExtras().get("data"); ImageView imageview = (ImageView) findViewById(R.id.pic); imageview.setImageBitmap(image); } else if (resultCode == RESULT_CANCELED) { Toast.makeText(this, "CANCELED ", Toast.LENGTH_LONG).show(); } } } 

问题是意图data为空,并且OnActivityResult方法直接转向(resultCode == RESULT_CANCELED) ,并且应用程序返回到以前的avtivity。

我怎样才能解决这个问题,并调用相机后,应用程序返回到当前的活动,其中包含一个ImageView将包含拍摄的图片?

谢谢

只有在返回的Intent中传回缩略图时,默认的Android相机应用程序才会返回非空的意图。 如果您通过带有URI的EXTRA_OUTPUT来写入,它将返回一个null意图,并且图片位于您传入的URI中。

您可以通过在GitHub上查看相机应用程序的源代码来validation这一点:

我猜想你要么以某种方式传递EXTRA_OUTPUT ,要么手机上的相机应用程序工作方式不同。

我find了一个简单的答案。 有用!!

Ø

 private void openCameraForResult(int requestCode){ Intent photo = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); Uri uri = Uri.parse("file:///sdcard/photo.jpg"); photo.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, uri); startActivityForResult(photo,requestCode); } if (requestCode == CAMERA_REQUEST_CODE) { if (resultCode == Activity.RESULT_OK) { File file = new File(Environment.getExternalStorageDirectory().getPath(), "photo.jpg"); Uri uri = Uri.fromFile(file); Bitmap bitmap; try { bitmap = MediaStore.Images.Media.getBitmap(getContentResolver(), uri); bitmap = crupAndScale(bitmap, 300); // if you mind scaling pofileImageView.setImageBitmap(bitmap); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } 

如果你想裁剪和缩放这个图像

 public static Bitmap crupAndScale (Bitmap source,int scale){ int factor = source.getHeight() <= source.getWidth() ? source.getHeight(): source.getWidth(); int longer = source.getHeight() >= source.getWidth() ? source.getHeight(): source.getWidth(); int x = source.getHeight() >= source.getWidth() ?0:(longer-factor)/2; int y = source.getHeight() <= source.getWidth() ?0:(longer-factor)/2; source = Bitmap.createBitmap(source, x, y, factor, factor); source = Bitmap.createScaledBitmap(source, scale, scale, false); return source; } 

简单的工作相机应用程序,避免零意图问题

– 所有更改的代码包括在这个答复中; 接近android教程

我在这个问题上花了很多时间,所以我决定创build一个帐户,并与你分享我的结果。

官方的android教程“拍照简单”竟然没有完全实现它所承诺的。 在那里提供的代码没有在我的设备上工作:三星Galaxy S4 Mini GT-I9195运行Android版本4.4.2 / KitKat / API级别19。

我发现主要的问题是捕捉照片(教程中的dispatchTakePictureIntent )时调用的方法中的以下行:

 takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI); 

它导致随后的onActivityResult为null的意图。

为了解决这个问题,我从之前的回复中获得了很多灵感,并且在github上发布了一些有用的post(大部分是深度的 – 大得感谢他;你也可以在一个密切相关的post上看看他的回复)。

遵循这些令人愉快的build议,我select了删除所提到的putExtra行的策略,然后在onActivityResult()方法中做相应的从摄像头取回拍摄的图片。 获取与图片相关的位图的决定性代码行是:

  Uri uri = intent.getData(); Bitmap bitmap = null; try { bitmap = MediaStore.Images.Media.getBitmap(this.getContentResolver(), uri); } catch (IOException e) { e.printStackTrace(); } 

我创build了一个示例应用程序,只需要拍照,将其保存在SD卡上并显示即可。 当我偶然发现这个问题的时候,我认为这可能会有助于同样的情况,因为目前的帮助build议大多是指相当广泛的githubpost,而这些post是做这件事情的,但并不是很容易监督新手我。 对于Android Studio在创build新项目时默认创build的文件系统,我只是为了我的目的而更改了三个文件:

activity_main.xml:

 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context="com.example.android.simpleworkingcameraapp.MainActivity"> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="takePicAndDisplayIt" android:text="Take a pic and display it." /> <ImageView android:id="@+id/image1" android:layout_width="match_parent" android:layout_height="200dp" /> </LinearLayout> 

MainActivity.java:

 package com.example.android.simpleworkingcameraapp; import android.content.Intent; import android.graphics.Bitmap; import android.media.Image; import android.net.Uri; import android.os.Environment; import android.provider.MediaStore; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.ImageView; import android.widget.Toast; import java.io.File; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.Date; public class MainActivity extends AppCompatActivity { private ImageView image; static final int REQUEST_TAKE_PHOTO = 1; String mCurrentPhotoPath; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); image = (ImageView) findViewById(R.id.image1); } // copied from the android development pages; just added a Toast to show the storage location private File createImageFile() throws IOException { // Create an image file name String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmm").format(new Date()); String imageFileName = "JPEG_" + timeStamp + "_"; File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES); File image = File.createTempFile( imageFileName, /* prefix */ ".jpg", /* suffix */ storageDir /* directory */ ); // Save a file: path for use with ACTION_VIEW intents mCurrentPhotoPath = image.getAbsolutePath(); Toast.makeText(this, mCurrentPhotoPath, Toast.LENGTH_LONG).show(); return image; } public void takePicAndDisplayIt(View view) { Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); if (intent.resolveActivity(getPackageManager()) != null) { File file = null; try { file = createImageFile(); } catch (IOException ex) { // Error occurred while creating the File } startActivityForResult(intent, REQUEST_TAKE_PHOTO); } } @Override protected void onActivityResult(int requestCode, int resultcode, Intent intent) { if (requestCode == REQUEST_TAKE_PHOTO && resultcode == RESULT_OK) { Uri uri = intent.getData(); Bitmap bitmap = null; try { bitmap = MediaStore.Images.Media.getBitmap(this.getContentResolver(), uri); } catch (IOException e) { e.printStackTrace(); } image.setImageBitmap(bitmap); } } } 

AndroidManifest.xml:

 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.android.simpleworkingcameraapp"> <!--only added paragraph--> <uses-feature android:name="android.hardware.camera" android:required="true" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <!-- only crucial line to add; for me it still worked without the other lines in this paragraph --> <uses-permission android:name="android.permission.CAMERA" /> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest> 

请注意,我发现这个问题的解决scheme也导致了Android清单文件的简化:由于我没有在我的Java代码中使用任何东西,所以android教程在添加提供程序方面提出的更改不再需要。 因此,只有很less的标准行(大部分是关于权限)必须被添加到清单文件中。

指出Android Studio的自动导入可能无法处理java.text.SimpleDateFormatjava.util.Date 。 我不得不手动导入他们两个。

以下代码适用于我:

 Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(cameraIntent, 2); 

结果如下:

 protected void onActivityResult(int requestCode, int resultCode, Intent imageReturnedIntent) { super.onActivityResult(requestCode, resultCode, imageReturnedIntent); if(resultCode == RESULT_OK) { Uri selectedImage = imageReturnedIntent.getData(); ImageView photo = (ImageView) findViewById(R.id.add_contact_label_photo); Bitmap mBitmap = null; try { mBitmap = Media.getBitmap(this.getContentResolver(), selectedImage); } catch (IOException e) { e.printStackTrace(); } } } 

您正在传递行动代码来loggingvideo,但将结果视为照片。

可能是因为你有这样的事情?

 Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); Uri fileUri = CommonUtilities.getTBCameraOutputMediaFileUri(); takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, fileUri); startActivityForResult(takePictureIntent, 2); 

但是,您不能将额外的输出放入意图中,因为这样数据将进入URI而不是数据variables。 出于这个原因,你必须把中间的两条线,所以你有

 Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(takePictureIntent, 2); 

这就是为我造成的问题,希望有所帮助。

访问摄像头并拍照并在Android上设置ImageView

你必须使用Uri file = Uri.fromFile(getOutputMediaFile()); 为棉花糖

使用下面的链接获取path

https://androidkennel.org/android-camera-access-tutorial/