详解Android 扫描条形码(Zxing插件)

 更新时间:2016年12月19日 14:38:23   投稿:sxyy  
本篇文章主要对Android 扫描条形码(Zxing插件)进行实例解析,相信对大家的学习会有很好的帮助,需要的朋友一起来看下吧

使用Android Studio

一、在build.gradle(Module:app)添加代码  下载,调用插件

apply plugin: 'com.android.application'
android {
 compileSdkVersion 24
 buildToolsVersion "24.0.1"

 defaultConfig {
  applicationId "com.example.ly.scanrfid"
  minSdkVersion 19
  targetSdkVersion 24
  versionCode 1
  versionName "1.0"
 }
 buildTypes {
  release {
   minifyEnabled false
   proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  }
 }
 repositories {
  mavenCentral()
  maven {
  url "http://dl.bintray.com/journeyapps/maven"
  }
 }
}
dependencies {
 compile fileTree(dir: 'libs', include: ['*.jar'])
 testCompile 'junit:junit:4.12'
 compile 'com.android.support:appcompat-v7:24.2.1'
 // Supports Android 4.0.3 and later (API level 15)
 compile 'com.journeyapps:zxing-android-embedded:2.0.1@aar'
 // Supports Android 2.1 and later (API level 7), but not optimal for later Android versions.
 // If you only plan on supporting Android 4.0.3 and up, you don't need to include this.
 compile 'com.journeyapps:zxing-android-legacy:2.0.1@aar'
 // Convenience library to launch the scanning and encoding Activities.
 // It automatically picks the best scanning library from the above two, depending on the
 // Android version and what is available.
 compile 'com.journeyapps:zxing-android-integration:2.0.1@aar'
 // Version 3.0.x of zxing core contains some code that is not compatible on Android 2.2 and earlier.
 // This mostly affects encoding, but you should test if you plan to support these versions.
 // Older versions e.g. 2.2 may also work if you need support for older Android versions.
 compile 'com.google.zxing:core:3.0.1'
}

二、添加权限

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="com.example.ly.scanrfid">
 <uses-permission android:name="android.permission.CAMERA"/>
 <uses-permission android:name="android.permission.VIBRATE"/>
 <uses-permission android:name="android.permission.INTERNET"/>
 <application
  android:allowBackup="true"
  android:icon="@mipmap/ic_launcher"
  android:label="@string/app_name"
  android:supportsRtl="true"
  android:theme="@style/AppTheme">
  <activity android:name=".MainActivity">
   <intent-filter>
    <action android:name="android.intent.action.MAIN"/>
    <category android:name="android.intent.category.LAUNCHER"/>
   </intent-filter>
  </activity>
 </application>
</manifest>

三、Activity代码

package com.example.ly.scanrfid;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Toast;
import com.google.zxing.integration.android.IntentIntegrator;
import com.google.zxing.integration.android.IntentResult;
public class MainActivity extends AppCompatActivity {
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
 }
 // 扫描按钮点击监听事件
 public void clickScan(View view) {
  //扫描操作
  IntentIntegrator integrator = new IntentIntegrator(MainActivity.this);
  integrator.initiateScan();
 }
 @Override
 protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  // 跳转扫描页面返回扫描数据
  IntentResult scanResult = IntentIntegrator.parseActivityResult(requestCode, resultCode, data);
  //  判断返回值是否为空
  if (scanResult != null) {
   //返回条形码数据
   String result = scanResult.getContents();
   Log.d("code", result);
   Toast.makeText(this, result, Toast.LENGTH_LONG).show();
  }
 }
}

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持脚本之家!

相关文章

  • Android源码中的目录结构详解

    Android源码中的目录结构详解

    这篇文章主要介绍了Android源码中的一些目录结构,方法需要的朋友
    2013-06-06
  • Android接收和发送短信处理

    Android接收和发送短信处理

    这篇文章主要介绍了Android接收和发送短信处理的相关资料,具有一定的参考价值,需要的朋友可以参考下
    2016-01-01
  • Android Studio不能获取远程依赖包的完美解决方法

    Android Studio不能获取远程依赖包的完美解决方法

    这篇文章主要介绍了Android Studio不能获取远程依赖包的解决方法,非常不错,具有参考借鉴价值,需要的朋友可以参考下
    2017-11-11
  • Android编程解析XML方法详解(SAX,DOM与PULL)

    Android编程解析XML方法详解(SAX,DOM与PULL)

    这篇文章主要介绍了Android编程解析XML方法,结合实例形式详细分析了Android解析XML文件的常用方法与相关实现技巧,需要的朋友可以参考下
    2016-01-01
  • ImageSwitcher图像切换器的使用实例

    ImageSwitcher图像切换器的使用实例

    这篇文章主要为大家详细介绍了ImageSwitcher图像切换器的使用实例,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-10-10
  • Android 边播边缓存的实现(MP4 未加密m3u8)

    Android 边播边缓存的实现(MP4 未加密m3u8)

    这篇文章主要介绍了Android 边播边缓存的实现(MP4 未加密m3u8),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2020-11-11
  • Android视图绑定viewBinding的使用介绍

    Android视图绑定viewBinding的使用介绍

    最近这段时间在学习Kotlin,突然发现谷歌已经把kotlin-android-extensions插件废弃,目前推荐使用ViewBinding来进行替代,接下来通过本文给大家分享Android使用ViewBinding的详细步骤,感兴趣的朋友一起学习吧
    2023-01-01
  • Android小知识之图片的3种压缩方式小结

    Android小知识之图片的3种压缩方式小结

    这篇文章主要给大家介绍了关于Android小知识之图片的3种压缩方式的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2018-10-10
  • Android Gradle开发指南详解

    Android Gradle开发指南详解

    这篇文章主要为大家详细介绍了Android Gradle开发指南的相关资料,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-10-10
  • Android ListView弹性效果的实现方法

    Android ListView弹性效果的实现方法

    这篇文章主要为大家详细介绍了Android ListView弹性效果的实现方法,感兴趣的小伙伴们可以参考一下
    2016-05-05

最新评论