Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7091343
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T08:10:24+00:00 2026-05-28T08:10:24+00:00

Possible Duplicate: Using ZXing to create an android barcode scanning app I know it

  • 0

Possible Duplicate:
Using ZXing to create an android barcode scanning app

I know it is possible to scan a movie and see if the movie is available at the store. How would I do this using zxing? I did look over the links pertaining this and I am having a difficulty time understanding it all. I did download the .apk file and convert it to .zip, but I do not see any classes in the folders. I am really confused and I wish there was a web site that explains how to use zxing to make this possible.

anyone have any web sites they know of that will get me started?

thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T08:10:24+00:00Added an answer on May 28, 2026 at 8:10 am

    The easiest way to use zxing is to call it by Intent.

    Intent intent = new Intent("com.google.zxing.client.android.SCAN");
    intent.setPackage("com.google.zxing.client.android");
    startActivityForResult(intent, REQUEST_CODE_SCANNER);
    

    This will launch the scanner activity, if Barcode Scanner is installed. After a barcode is recognized it will return to your activity and call

    public void onActivityResult(int requestCode, int resultCode, Intent intent) {
        Log.i(TAG, "ACTIVITY RESULT");
        if (requestCode == REQUEST_CODE_SCANNER) {
            if (resultCode == RESULT_OK) {
                // get the scanner/input results
                String result = intent.getStringExtra(SCAN_RESULT);
                String format = intent.getStringExtra(SCAN_RESULT_FORMAT);
            } else if (resultCode == RESULT_CANCELED) {
                // nothing to do
            }
        } 
    }
    

    With these values you can then query any database to get information about the scanned product.

    You might furthermore check, if the Barcode Scanner is installed. I’m doing this is my own app. If the scanner isn’t installed, I give the user the possibility to launch the Android Market with the Barcode Scanner App preselected, so he just needs to hit “Download”.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Converting XML to JSON using Python? I'm doing some work on App
Possible Duplicate: How do you send email from a Java app using Gmail? How
Possible Duplicate: Using ApplicationSettings to store Checked property for WinForms RadioButtons I have three
Possible Duplicate: Using SSL in an iPhone App - Export Compliance I am in
Possible Duplicate: Using java to create a web browser Is there any way to
Possible Duplicate: using legacy assemblies in metro style app I have downloaded and installed
Possible Duplicate: Custom alert using Javascript I want to create a confirmation message-Do you
Possible Duplicate: Using ASP.NET Controls without databinding My previous question yielded few results so
Possible Duplicate: Casting vs using the ‘as’ keyword in the CLR Which method is
Possible Duplicate: Converting XML to JSON using Python? I am importing an XML feed

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.