Gill
Gill

Reputation: 31

How to read QR code in android studio and save the result

i am at beginner level in android. i want to develop an app which scan QR code using camera and shows the result of QR code. There are many solution there but every time i try code the error appear or exception is there. i want complete step by step process in android studio or tutorial link

Upvotes: 0

Views: 16974

Answers (2)

Ivan
Ivan

Reputation: 3062

I highly recommend you to check Udacity, they have awesome free courses for beginners and intermediate developers. Also they have Android Developer Nanodegree and one of it's projects is to create a Barcode scanner app, which is very similar to scanning QR code.

Also you could try using library like this to implement QR-scanner functionality, but using library won't improve your knowledge.

Upvotes: 2

Farhad
Farhad

Reputation: 12986

You can use the ZXing library for reading the bar-codes and parsing the contents. Here's a good tutorial. http://code.tutsplus.com/tutorials/android-sdk-create-a-barcode-reader--mobile-17162

Upvotes: 0

Related Questions