0
votes
3answers
69 views

How to store the Generated QR-Code as an image in SDCard (ZXing library)

I m making an app based on QR code. I have to Generate a QR-Code of a specific String and also I have to save the generated QR-Code in SD card. is it possible using the Zxing Library. So for I am ...
0
votes
1answer
66 views

Show barcode value in Barcode Scanner immediately after camera capture?

I am trying to display the scanned barcode value immediately after scanning, where the Barcode Scanner app displays, such that it might display: Found Plain Text - "Insert Barcodevalue here". Is it ...
2
votes
2answers
158 views

Intent.createChooser android QR code reader

I want the user to choose a QR reader from his installed apps. This could be done by using the Intent.createChooser. When a picture is taken with the QR reader, the QR code should be sent back to my ...
1
vote
1answer
375 views

Obtaining QR scan results via ZXing that is integrated into your app

I used this answer to create a standalone Android library project that has the ZXing source code in it (ZXing v2.1). It compiles fine and if I run CaptureActivity, I can read a QR code as expected. ...
0
votes
2answers
71 views

Call Intent from handleDecode of zxing

I am developing an application in which i am reading the QR code using zxing library. I am calling the zxing library for reading QR CODE as: public class QRScanner extends CaptureActivity { ...
0
votes
1answer
52 views

How to stop intercepting Zxing intents in my app?

I just emailed the dev and was asking him about this stuff. Basically, I followed this: ...
-2
votes
1answer
83 views

ZXing : list of most famous qr-scanners to avoid “no scanner available”-dialog [closed]

I'm pretty new to android-developing. My app needs the Scanner-Result in order to identify an url. So i integrated the XZing-Scanner as Default-Scanner. But: For those, who already installed ...
-3
votes
1answer
331 views

Qr code Encoding with zxing [closed]

I am developing qrcode generater application for the android , iam using zxing lib. for that,when i am exceuting this code it works well but after clicking on generate button nothing is happen, i have ...
-2
votes
2answers
316 views

Google Image API for QR code application for eclipse android [closed]

Hear i am working on qrcode generation application development, I am new for EAndroid application development So can anyone suggest me how i can use google image chart API to integrate it into eclipse ...
2
votes
1answer
122 views

Zxing - My app does not want to start the camera

first of all i will introduce myself. I am a young student from austria who is new to Android programming. My Project is to write a Barcode scanner and if you scan a product you get more information ...
1
vote
1answer
282 views

Trying to read barcodes with Zxing, but it seems the onActivityResult is not beeing called

as the title says, I'm trying to scan 1D barcodes, so far I have thet following code: public class MainActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { ...
1
vote
1answer
228 views

Zxing handling back button

How should I catch if user starts Zxing barcode scanner from my app (intent) and than press back button? - it shows "sorry MyApp was forced to close" (more or less as my language is not English). Now ...
1
vote
1answer
176 views

Barcode Scanner intent in my activity

Is there any way to put a Zxing intent inside a part of my activity? For example I want to keep on screen some text and buttons + Barcode Scanner intent below them. Any examples/tutorials would be ...
1
vote
2answers
181 views

Not receiving an Intent back from Zxing barcode scanner

I know some others have had this problem but I've followed the solutions and it still isn't working for me. I've created a new application, it has 1 activity which has 1 button (scan button) and 2 ...
0
votes
1answer
98 views

Open app menu item from webview

I am trying to launch an intent to open the zxing barcode scanner from a link in a webview. I have created a menu item that launches the zxing scanner from the menu, when someone hits the menu button ...
1
vote
1answer
2k views

how does “com.google.zxing.client.android.SCAN” work in android?

I developed a BarcodeScanner app with ZXING library. for that I downloaded the complete library and added it to my proj and called an Intent with URI:"com.myproject.vinscan.client.android.SCAN". but ...
1
vote
1answer
171 views

Get callBack from Goggles

I know that there are not an API for google toggle. But it listen to com.google.zxing.client.android.SCAN So with Intent intent = new Intent("com.google.zxing.client.android.SCAN"); ...
0
votes
1answer
32 views

Working with 2 apps android

I'm working with android and I have a question. How I can do if I am doing an app that need another app. For example one of my option needs an app that reads code QR (2D) how can I work with both? ...
0
votes
1answer
363 views

ZXing Camera Setting Focus and Light Settings via IntentIntegrator

I would like to tell ZXing to load the camera with the torch light on and auto focus off (preferably set to macro). Is there any way to do this? I have tried setting the SharedPreferences for ...
0
votes
1answer
430 views

Intent zxing library on Android [duplicate]

Possible Duplicate: How to force using zxing lib with only my application? I use zxing to scan QRCode in Android app. I use Intent to show it: Intent intent = new ...
0
votes
1answer
294 views

Using OnClickListener with multiple ImageButtons?

I'm trying to pull data from a barcode with plain text via zxing using their ScannerViaIntent source code. It works perfectly fine when I set up the code for a single ImageButton but when i set up the ...
1
vote
1answer
256 views

Exception in listener attached to multiple buttons in barcode app

Okay, So I am developing an in house barcode scanner for my company to use when we move computers and equipment. I am currently almost through setting up the Zxing Barcode Scanner Via Intent after ...
3
votes
1answer
485 views

Using Zxing Barcode scanner causes SecurityException

I use Zxing Barcode Scanner in my app via launching an Intent so that I can scan a barcode and get the data back to my app. Very basic stuff; it has worked for a long time no problem. I recently got ...
0
votes
2answers
516 views

android intent call without asking

My phonegap app using zxing barcode scanner. I aso install a demo app (barcodescanner) from zxing. Now, in my phonegap app, when I call a barcode scanner, android ask me choose which app to do this ...
-3
votes
2answers
496 views

Zxing via intent

In my application I use the zxing library. I start de zxing barcodescanner via intent. But when the user has no barcodescanner installed. The application stops working. How can I check if a zxing ...
0
votes
1answer
596 views

zxing onActivityResults not firing

I'm trying to pull data from a QR code via zxing using the following code (basically copypasted from a tutorial, with names changed to protect the innocent): //Check for Barcode scanner, ...
1
vote
1answer
254 views

Zxing:Activity get Result

I've making my own app, with a menu and in one activity iam trying to get the result of a qrcode. I need to get the IntentResult but how? And where I get the onActivityResult working? Its a litle ...
0
votes
2answers
874 views

How to grab zxing scan results and use them?

I am a new in developing area. Thanks in advance for your time. I am trying to deal with the results after scanning a QR image. I am using the Zxing library. Right now only the content string can ...
3
votes
0answers
418 views

Using android Intent in adobe air

it has been a while since I was here. Currently, I'm trying to develop an application in Adobe AIR that has a 1D bar-code reader using the device camera function. I have tried using ZXing's library ...
3
votes
1answer
548 views

How to scan the barcode of format PDF 417 using zxing app in android?

How do i scan the barcode of format PDF417 ? Do i need to pass intent extras? (Note : Zxing barcode app is already installed in my device). Please help me. Here is my code for using Zxing barcode ...
0
votes
1answer
389 views

zxing intent “google goggles” doesn't recognize barcodes

I've made a little App for android with Zxing Intent, but it has a problem, because google goggles receives the Intent and do nothing, because it's not capable of decoding barcodes. Is there a way to ...
0
votes
1answer
363 views

onActivityResult in zxing show results in a different activity

Hey guys im making an app using zxing integrater I have the scanner working propelry and show the results fine but would like the reslts to showon a separate class activity any ideas? JavaActivity ...
2
votes
1answer
711 views

Integrating Zxing Barcode Scanner With My Android App - Custom Action Name Issue

So I have successfully integrated Zxing into my application. However I want to make the entry Action name different so that users don't have to select between the barcode scanner app and my app for ...
1
vote
2answers
861 views

Possible to customise ZXing in Android to handle save multiple QR code without reloading of camera?

I have successfully integrated ZXing QR Scanner. What I am doing is to repeat the scan once the user has finished scanning 1 QR code. The problem I faced is that ZXing is extremely slow in reloading ...
4
votes
3answers
3k views

ZXing how to scan QR-Code AND 1D barcode?

I just imported the ZXing library in my app, I know how to set up the putExtra function to scan QR-Code barcode: INTENT = new Intent("com.google.zxing.client.android.SCAN"); ...
2
votes
3answers
3k views

Extracting results from Android ZXing IntentIntegrator

I am rather new to ZXing and has been exploring their API. I have seen Using ZXing to create an android barcode scanning app and getting scan result when using zxing? I understand that the details ...
1
vote
2answers
1k views

Integration problem ZXing via Intent

Well, I'm trying implement a integration of zxing with my Android App. In my app there is a MainActivity. In this MainActivity, I use a button to execute the first block of code below. But every time ...
1
vote
1answer
548 views

Android: Scanning barcode to start Intent

Is it possible to create an qr-barcode, such as, that only by scanning this code (with ZXing Barcodescanner) an Intent will start, that opens my application?
0
votes
1answer
898 views

ZXing BarCode Scanner Only Scans App Barcodes

I have leveraged the ZXing barcode scanner intent, but it will only scan App barcodes (the barcodes that you take a picture of and it installs the app on your phone). I want it to be able to scan the ...