ActivityNotFoundException,图像捕捉?(ActivityNotFoundEx

2019-07-22 14:38发布

我已经发布了一个应用程序,让用户可以拍摄照片在它。我这样做是为了拍摄照片:

File file = new File( _path );
Uri outputFileUri = Uri.fromFile( file );   
Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE );
intent.putExtra( MediaStore.EXTRA_OUTPUT, outputFileUri );      
startActivityForResult( intent, 0 );

也是我加入这个权限来体现:

<uses-permission android:name="android.permission.CAMERA" />

我测试了我的应用程序上Android2.3.5Android3.0 ,和它的作品fine.But当我上运行我的应用程序Android4.0.3 ,它崩溃:

android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.media.action.IMAGE_CAPTURE (has extras) }

我怎样才能解决这个问题?

Answer 1:

几件事情可以发生

  1. 可能没有在设备中的任何相机
  2. 没有在设备中没有SD卡

你的案子符合上述任何一项?



Answer 2:

请检查您的

1.Tablet有摄像头(如果你使用平板电脑)。 2.手机有摄像头3.没有安装SD卡。

添加下面的体现。

   <uses-feature android:name="android.hardware.camera" />

将阻止应用程序正在从谷歌Play下载。 http://developer.android.com/google/play/filters.html

还要检查http://developer.android.com/guide/topics/manifest/uses-feature-element.html

要检查您的设备有摄像头。

public class MainActivity extends Activity {

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    //setContentView(R.layout.main);

    Context context = this;
    PackageManager packageManager = context.getPackageManager();

    // if device support camera?
    if (packageManager.hasSystemFeature(PackageManager.FEATURE_CAMERA)) {
        //yes
        Log.i("camera", "This device has camera!");
    }else{
        //no
        Log.i("camera", "This device has no camera!");
    }


}
}


文章来源: ActivityNotFoundException, image capturing?