国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

詳解Android 掃描條形碼(Zxing插件)

2019-12-12 04:17:32
字體:
來源:轉載
供稿:網友

使用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();  } }}

以上就是本文的全部內容,希望本文的內容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持武林網!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 璧山县| 达州市| 辽源市| 长沙县| 蓝山县| 浑源县| 沽源县| 连江县| 浠水县| 广宁县| 大名县| 思南县| 来凤县| 天长市| 林口县| 沧源| 宝鸡市| 尉氏县| 勃利县| 上林县| 将乐县| 谢通门县| 澳门| 册亨县| 丰顺县| 临洮县| 太湖县| 贵港市| 郸城县| 独山县| 鄂尔多斯市| 临西县| 宝山区| 当涂县| 高密市| 普陀区| 大邑县| 芮城县| 南江县| 晋州市| 临清市|