我已经发布了一个应用程序,让用户可以拍摄照片在它。我这样做是为了拍摄照片:
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.5
和Android3.0
,和它的作品fine.But当我上运行我的应用程序Android4.0.3
,它崩溃:
android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.media.action.IMAGE_CAPTURE (has extras) }
我怎样才能解决这个问题?
请检查您的
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!");
}
}
}