I just wanted to integrate ZXing API in my android app, but cant find the proper documentation.
closed as not a real question by Sean Owen, Sergey Glotov, Cole Johnson, TryTryAgain, nickhar Apr 17 at 0:43
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
The latest version of Barcode Scanner as well as the ZXing source code now supports front facing camera. |
|||
|
|
|
Follow these steps: 1) Download the source code here: http://code.google.com/p/zxing/source/checkout 2) Import the source code as a new project into Eclipse and make the root of the project be the folder /android (found in the source code). 3) Make sure to also copy everything under /core/src to this project, as the source code imported on step 2 requires it. 4) Make sure to set your compiler to Java 1.6 on Eclipse (right click on your project, properties, Java Compiler) otherwise you will get some errors regarding the @Override annotation. 5) Edit the class com.google.zxing.client.android.camera.open.GingerbreadOpenCameraInterface as follows:
5) Make this project as a library, as easily described here: http://developer.android.com/tools/projects/projects-eclipse.html#SettingUpLibraryProject 6) Reference this project into your real project (right click on your real project, properties, Java Build Path, Projects, Add). 7) You're done! =) Hope it helps. |
|||
|
|
|
UPDATE: As the ZXing's FAQ has been updated since I posted this answer, the content below is no longer accurate:
Besides, although I think this is not totally impossible if you can connect the front camera. Therefore, I think you should take a look at the Camera Section of Android Documentation: here and here |
||||