How to detect no of camera's available in android device? and also if the device has front camera how to use it?
|
What I would suggest is similar to doc_180's answer, but should be able to detect both front and back facing cameras even for Froyo, though if I'm not mistaken, Froyo never supported front-facing cameras, so you'll always get a false response for
EDIT: Just realized this is a really, really old question. Oh well, hopefully it helps someone in the future. |
|||||||||||
|
|
Use packagemanager to check if the device supports the Intent. In this case
|
||||
|
|||||
|
|
The quickest way I've found to check if a (backfacing) camera exists is to check if Camera.open() returns null.
This should be available for earlier versions of android as well. |
|||
|
|
|
Try this, this worked for me in a Moto RAZR HD:
Example usage:
|
|||||
|
|
you can use this static method if you just want to know how many cameras there are: Camera.getNumberOfCameras(); (api 9) |
|||
|
|
