文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

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

2022-06-06 05:12

关注

使用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();
  }
 }
}
您可能感兴趣的文章:详解jQuery的表单验证插件--Validation[Bootstrap-插件使用]Jcrop+fileinput组合实现头像上传功能实例代码移动端日期插件Mobiscroll.js使用详解jquery插件bootstrapValidator表单验证详解如何实现星星评价(jquery.raty.js插件)


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯