我发布了一个App,用户可以在里面拍照。我这样做是为了捕捉照片:
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 );
我还添加了这个权限到manifest:
<uses-permission android:name="android.permission.CAMERA" />
我在Android2.3.5
和Android3.0
上测试了我的应用程序,它工作良好。但是当我在Android4.0.3
上运行应用程序时,它崩溃了:
android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.media.action.IMAGE_CAPTURE (has extras) }
我怎样才能解决这个问题?
有几种可能
- 设备中可能没有任何相机
- 设备中没有sd卡
您的案例是否符合上述任何一项?
检查你的
1。平板电脑有摄像头(如果你使用平板电脑)。2. 手机有摄像头。未安装SD卡
将以下内容添加到舱单中。
<uses-feature android:name="android.hardware.camera" />
将阻止应用程序从google 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!");
}
}
}