“ java.lang.IllegalArgumentException: No configs match configSpec ” While opening Camera Intent

前端 未结 2 1735
醉酒成梦
醉酒成梦 2020-12-31 07:37

This is my simple Camera Intent Demo in which i have only one Activity .....

package x.y;

import android.app.Activity;
import android.content.Intent;
import         


        
相关标签:
2条回答
  • 2020-12-31 07:58

    Camera is not support in Android emulator so don't worry about it. This type of Error come in Android Emulator 2.2 and i have also Checked Android emulator 1.6 but not getting Error.

    I have also checked above code in Android Device Samsung Galaxy Ace is working fine.

    Thanks dear.

    0 讨论(0)
  • 2020-12-31 08:00

    This is actually part of a bigger issue, and I'm hoping that by posting here, others who have experienced this error will read this entry. I equally hope that, if any of my conclusions are incorrect, someone comes forth with a more definitive explanation and/or solution.

    The core issue is OpenGL support. Beginning at 2.2, Android supports OpenGL ES 2.0, and beginning at 4.0.3, Android emulators support OpenGL ES 2.0. Code that uses OpenGL ES 2.0 will not work on emulators before 4.0.3. [Evidently, the camera switched from ES 1.0 to 2.0 at Android 2.2]

    But that's not all! None of the Android docs I've encountered mention that, in order to support Open GL ES 2.0 emulation, your box's graphic card chipset and driver must support OpenGL 2.0 as well. Therefore, if you enable GPU Emulation on the AVD and you still encounter this error, do the following:

    1) Find out the specs on your graphic card and visit the chipset manufacturer's web site to determine if the chipset is OpenGL 2.0 compatible. If it isn't, you're S.O.L. and must stick to debugging through an actual Android device instead of an emulator.

    2) Determine if you have the latest graphics driver for the chipset. Drivers obtained through Microsoft (if you're using Windows) typically do not support OpenGL, so you want to download the latest driver from the manufacturer.

    I hope this helps.

    0 讨论(0)
提交回复
热议问题