ALL >> Computer-Programming >> View Article
Qr Code Integration With Andriod Platform
We are using ZXing (pronounced "zebra crossing") image processing libraries to scan QR Code using Android device. The solution involves easy steps to integrate Zxing libraries with Android to direct auto scan of QR Code. We are using Android environment for development that Eclipse Java IDE.
Setp1: Acquire Zxing libray (Zxing 1.7 release bundle) from here (http://code.google.com/p/zxing/downloads/list)
Step2: Extract the zip bundle.
Step3: Create a new Android sample Project in Eclipse for QR Code Auto Scanner Test and set target to Android 2.2 SDK version.
Step4: Locate Android folder from the extracted bundle and pick CaptureActivity.java source file.
Step5: Also locate Core folder and import the source into the above sample project.
Step6: Change the package name of above CaptureActivity.java file to match the above sample project package structure.
Step7: Design a sample page with a SCAN button to add to the above sample project.
Step8: Add navigation to SCAN button click event as shown below
Intent scanner = new Intent(QRCodeAutoScannerTest.this, CaptureActivity.class); ...
... startActivity(scanner);
Step9: Change the existing manifest file to add the below filters
android:name="android.intent.category.BROWSABLE"/>
android:name="android.intent.category.BROWSABLE"/>
android:name="android.intent.category.BROWSABLE"/>
Add Comment
Computer Programming Articles
1. Google Cloud Platform Tutorial: Step-by-step Introduction To Google CloudAuthor: Tech Point
2. Microsoft Azure Tutorial: A Beginner’s Guide To Cloud Computing With Azure
Author: Tech Point
3. How Thoughtful Web Development Improves User Experience And Business Trust
Author: Ramesh Roy
4. Git Tutorial: A Beginner’s Guide To Version Control And Git Basics
Author: Tech Point
5. Machine Learning Tutorial Explained Simply For Students And Beginners
Author: Tech Point
6. How Ai Is Transforming Logistics Software Development
Author: Chudovo
7. Top Seo Companies In Dubai For 2025
Author: webtek Digital
8. Hadoop Tutorial Step By Step: Learn Hadoop Basics To Advanced Concepts
Author: Tech Point
9. Data Science Tutorial From Scratch: Learn Data Science Step By Step
Author: Tech Point
10. Data Science With Python: Best Computer Course For Career
Author: TCCI - Tririd Computer Coaching Institute
11. Magento Web Development Agency: Empowering Brands With Scalable And Smart E-commerce Solutions
Author: Web Panel Solutions
12. Web Development Course For High-paying Jobs
Author: TCCI - Tririd Computer Coaching Institute
13. Data Structures And Algorithms Classes: Tcci Training
Author: TCCI - Tririd Computer Coaching Institute
14. C & C++ Programming: Strong Logic Training
Author: TCCI - Tririd Computer Coaching Institute
15. Python Challenges For Beginners
Author: Softlogic Systems






