Android二维码功能实现

摘要:
不过,二维码功能如果真要做起来还是非常复杂的,从零开始实现不太现实,比较好的做法就是借助现有的开源项目。目前在二维码这一领域名气最大的开源项目就是ZXing了,它提供了多个平台的二维码扫描解决方案,开源项目地址是https://code.google.com/p/zxing/。另外ZXingAndroid项目下的主活动是CaptureActivity,这里我们需要将主活动的声明删除掉,因为ScannerTest项目中主活动是MainActivity。合并后的AndroidManifest中的代码如下所示:[html]viewplaincopyprint?

最近二维码真是越来越火了,随便电视上、网络上、商场里,到处都是二维码。而内嵌二维码扫描功能的软件也越来越多,QQ、微信、UC浏览器等等应用都可以对着二维码扫一扫,感觉我们自己的应用里不加上二维码扫描功能,都跟不上时代潮流了。所以今天我就将带着大家一起,在我们自己的程序里加入二维码扫描的功能。

不过,二维码功能如果真要做起来还是非常复杂的,从零开始实现不太现实,比较好的做法就是借助现有的开源项目。目前在二维码这一领域名气最大的开源项目就是ZXing了(Zebra Crossing),它提供了多个平台的二维码扫描解决方案,开源项目地址是https://code.google.com/p/zxing/

虽说网上已经有现成的开源项目了,不过关于ZXing的文档和教程好像还比较少,因此还是有不少朋友并不知道在项目中该如何引入ZXing的,这里我就带着大家一步步地实现,相信每个人在看完本篇文章后都可以在自己的项目中实现二维码扫描功能。

首先,我们需要下载ZXing项目所依赖的Jar包的源码。

下载地址是 http://repo1.maven.org/maven2/com/google/zxing/core/2.2/core-2.2-sources.jar

然后我们再来下载ZXing项目,下载地址是 https://zxing.googlecode.com/files/ZXing-2.2.zip

建议使用迅雷下载,因为Google Code和Maven的访问在国内不稳定,经常出现断联的情况,使用迅雷可以保证文件的完整性。

另外,经过我的测试,在ZXing项目中直接导入core-2.2的Jar包是无法正常运行的,所以我们只能通过将core-2.2的源码加入到ZXing项目中来实现。下载好以上两个文件后,先解压core-2.2-sources.jar文件,解压之后的目录结构如下图所示:

Android二维码功能实现第1张

然后解压ZXing-2.2这个压缩包,里面可以看到各种平台下的ZXing项目源码,我们进入到android文件夹的src目录下,将core-2.2-sources中的源码拷贝进来。拷贝之后android文件夹下的目录结构如下图所示:

Android二维码功能实现第2张

这样准备工作已经完成了,现在我们新建一个Android项目ScannerTest,项目使用Android 4.0的API。

然后将上图中src目录下的所有文件全部复制,粘贴到我们ScannerTest项目的src目录下,完成后目录结构如下图所示:

Android二维码功能实现第3张

拷贝完了代码,现在该拷贝资源了,展开ZXing项目android文件夹下的res目录,将drawable文件夹、layout文件夹、menu文件夹、raw文件夹、values文件夹以及xml文件夹中的内容都拷贝到ScannerTest项目的res目录下,注意有冲突的部分要小心解决,比如两个values文件夹中都有string.xml文件,要将它们的内容进行合并,不能只是简单地覆盖。

然后我们还需要将AndroidManifest中的内容进行合并,注意ZXing Android项目下的AndroidManifest在声明Activity时用的都是简写,而现在由于项目包名变了,再使用简写会出现找不到活动的情况,因此所有的简写都要改成完整类名,例如.CaptureActivity要改成com.google.zxing.client.android.CaptureActivity。另外ZXing Android项目下的主活动是CaptureActivity,这里我们需要将主活动的声明删除掉,因为ScannerTest项目中主活动是MainActivity。合并后的AndroidManifest中的代码如下所示:

  1. <?xmlversion="1.0"encoding="utf-8"?>
  2. <manifestxmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.example.scannertest"
  4. android:versionCode="1"
  5. android:versionName="1.0">
  6. <uses-permissionandroid:name="android.permission.CAMERA"/>
  7. <uses-permissionandroid:name="android.permission.INTERNET"/>
  8. <uses-permissionandroid:name="android.permission.VIBRATE"/>
  9. <uses-permissionandroid:name="android.permission.FLASHLIGHT"/>
  10. <uses-permissionandroid:name="android.permission.READ_CONTACTS"/>
  11. <uses-permissionandroid:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS"/>
  12. <uses-permissionandroid:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  13. <uses-permissionandroid:name="android.permission.CHANGE_WIFI_STATE"/>
  14. <uses-permissionandroid:name="android.permission.ACCESS_WIFI_STATE"/>
  15. <uses-sdk
  16. android:minSdkVersion="14"
  17. android:targetSdkVersion="17"/>
  18. <uses-feature
  19. android:name="android.hardware.camera"
  20. android:required="false"/>
  21. <uses-feature
  22. android:name="android.hardware.camera.front"
  23. android:required="false"/>
  24. <uses-feature
  25. android:name="android.hardware.camera.autofocus"
  26. android:required="false"/>
  27. <uses-feature
  28. android:name="android.hardware.camera.flash"
  29. android:required="false"/>
  30. <uses-featureandroid:name="android.hardware.screen.landscape"/>
  31. <uses-feature
  32. android:name="android.hardware.wifi"
  33. android:required="false"/>
  34. <uses-featureandroid:name="android.hardware.touchscreen"/>
  35. <supports-screens
  36. android:anyDensity="true"
  37. android:largeScreens="true"
  38. android:normalScreens="true"
  39. android:smallScreens="true"
  40. android:xlargeScreens="true"/>
  41. <application
  42. android:allowBackup="true"
  43. android:icon="@drawable/ic_launcher"
  44. android:label="@string/app_name"
  45. android:theme="@style/AppTheme">
  46. <activity
  47. android:name="com.example.scannertest.MainActivity"
  48. android:label="@string/app_name">
  49. <intent-filter>
  50. <actionandroid:name="android.intent.action.MAIN"/>
  51. <categoryandroid:name="android.intent.category.LAUNCHER"/>
  52. </intent-filter>
  53. </activity>
  54. <activity
  55. android:name="com.google.zxing.client.android.CaptureActivity"
  56. android:clearTaskOnLaunch="true"
  57. android:configChanges="orientation|keyboardHidden"
  58. android:screenOrientation="landscape"
  59. android:stateNotNeeded="true"
  60. android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
  61. android:windowSoftInputMode="stateAlwaysHidden">
  62. <intent-filter>
  63. <actionandroid:name="com.google.zxing.client.android.SCAN"/>
  64. <categoryandroid:name="android.intent.category.DEFAULT"/>
  65. </intent-filter>
  66. <intent-filter>
  67. <actionandroid:name="android.intent.action.VIEW"/>
  68. <categoryandroid:name="android.intent.category.DEFAULT"/>
  69. <categoryandroid:name="android.intent.category.BROWSABLE"/>
  70. <data
  71. android:host="zxing.appspot.com"
  72. android:path="/scan"
  73. android:scheme="http"/>
  74. </intent-filter>
  75. <intent-filter>
  76. <actionandroid:name="android.intent.action.VIEW"/>
  77. <categoryandroid:name="android.intent.category.DEFAULT"/>
  78. <categoryandroid:name="android.intent.category.BROWSABLE"/>
  79. <data
  80. android:host="www.google.com"
  81. android:path="/m/products/scan"
  82. android:scheme="http"/>
  83. </intent-filter>
  84. <intent-filter>
  85. <actionandroid:name="android.intent.action.VIEW"/>
  86. <categoryandroid:name="android.intent.category.DEFAULT"/>
  87. <categoryandroid:name="android.intent.category.BROWSABLE"/>
  88. <data
  89. android:host="www.google.co.uk"
  90. android:path="/m/products/scan"
  91. android:scheme="http"/>
  92. </intent-filter>
  93. <intent-filter>
  94. <actionandroid:name="android.intent.action.VIEW"/>
  95. <categoryandroid:name="android.intent.category.DEFAULT"/>
  96. <categoryandroid:name="android.intent.category.BROWSABLE"/>
  97. <data
  98. android:host="scan"
  99. android:path="/"
  100. android:scheme="zxing"/>
  101. </intent-filter>
  102. </activity>
  103. <activity
  104. android:name="com.google.zxing.client.android.PreferencesActivity"
  105. android:label="@string/preferences_name"
  106. android:stateNotNeeded="true">
  107. </activity>
  108. <activity
  109. android:name="com.google.zxing.client.android.encode.EncodeActivity"
  110. android:stateNotNeeded="true">
  111. <intent-filter>
  112. <actionandroid:name="com.google.zxing.client.android.ENCODE"/>
  113. <categoryandroid:name="android.intent.category.DEFAULT"/>
  114. </intent-filter>
  115. <intent-filter>
  116. <actionandroid:name="android.intent.action.SEND"/>
  117. <categoryandroid:name="android.intent.category.DEFAULT"/>
  118. <dataandroid:mimeType="text/x-vcard"/>
  119. </intent-filter>
  120. <intent-filter>
  121. <actionandroid:name="android.intent.action.SEND"/>
  122. <categoryandroid:name="android.intent.category.DEFAULT"/>
  123. <dataandroid:mimeType="text/plain"/>
  124. </intent-filter>
  125. </activity>
  126. <activity
  127. android:name="com.google.zxing.client.android.book.SearchBookContentsActivity"
  128. android:configChanges="orientation|keyboardHidden"
  129. android:label="@string/sbc_name"
  130. android:screenOrientation="landscape"
  131. android:stateNotNeeded="true">
  132. <intent-filter>
  133. <actionandroid:name="com.google.zxing.client.android.SEARCH_BOOK_CONTENTS"/>
  134. <categoryandroid:name="android.intent.category.DEFAULT"/>
  135. </intent-filter>
  136. </activity>
  137. <activity
  138. android:name="com.google.zxing.client.android.share.ShareActivity"
  139. android:screenOrientation="user"
  140. android:stateNotNeeded="true"
  141. android:theme="@android:style/Theme.Light">
  142. <intent-filter>
  143. <actionandroid:name="com.google.zxing.client.android.SHARE"/>
  144. <categoryandroid:name="android.intent.category.DEFAULT"/>
  145. </intent-filter>
  146. </activity>
  147. <activity
  148. android:name="com.google.zxing.client.android.history.HistoryActivity"
  149. android:label="@string/history_title"
  150. android:stateNotNeeded="true">
  151. <intent-filter>
  152. <actionandroid:name="android.intent.action.VIEW"/>
  153. <categoryandroid:name="android.intent.category.DEFAULT"/>
  154. </intent-filter>
  155. </activity>
  156. <activity
  157. android:name="com.google.zxing.client.android.share.BookmarkPickerActivity"
  158. android:label="@string/bookmark_picker_name"
  159. android:stateNotNeeded="true">
  160. <intent-filter>
  161. <actionandroid:name="android.intent.action.PICK"/>
  162. <categoryandroid:name="android.intent.category.DEFAULT"/>
  163. </intent-filter>
  164. </activity>
  165. <activity
  166. android:name="com.google.zxing.client.android.share.AppPickerActivity"
  167. android:configChanges="orientation"
  168. android:label="@string/app_picker_name"
  169. android:stateNotNeeded="true">
  170. <intent-filter>
  171. <actionandroid:name="android.intent.action.PICK"/>
  172. <categoryandroid:name="android.intent.category.DEFAULT"/>
  173. </intent-filter>
  174. </activity>
  175. <activity
  176. android:name="com.google.zxing.client.android.HelpActivity"
  177. android:screenOrientation="user">
  178. <intent-filter>
  179. <actionandroid:name="android.intent.action.VIEW"/>
  180. <categoryandroid:name="android.intent.category.DEFAULT"/>
  181. </intent-filter>
  182. </activity>
  183. </application>
  184. </manifest>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.scannertest"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-permission android:name="android.permission.CAMERA" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.VIBRATE" />
    <uses-permission android:name="android.permission.FLASHLIGHT" />
    <uses-permission android:name="android.permission.READ_CONTACTS" />
    <uses-permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

    <uses-sdk
        android:minSdkVersion="14"
        android:targetSdkVersion="17" />

    <uses-feature
        android:name="android.hardware.camera"
        android:required="false" />
    <uses-feature
        android:name="android.hardware.camera.front"
        android:required="false" />
    <uses-feature
        android:name="android.hardware.camera.autofocus"
        android:required="false" />
    <uses-feature
        android:name="android.hardware.camera.flash"
        android:required="false" />
    <uses-feature android:name="android.hardware.screen.landscape" />
    <uses-feature
        android:name="android.hardware.wifi"
        android:required="false" />
    <uses-feature android:name="android.hardware.touchscreen" />

    <supports-screens
        android:anyDensity="true"
        android:largeScreens="true"
        android:normalScreens="true"
        android:smallScreens="true"
        android:xlargeScreens="true" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.scannertest.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.google.zxing.client.android.CaptureActivity"
            android:clearTaskOnLaunch="true"
            android:configChanges="orientation|keyboardHidden"
            android:screenOrientation="landscape"
            android:stateNotNeeded="true"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
            android:windowSoftInputMode="stateAlwaysHidden" >
            <intent-filter>
                <action android:name="com.google.zxing.client.android.SCAN" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data
                    android:host="zxing.appspot.com"
                    android:path="/scan"
                    android:scheme="http" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data
                    android:host="www.google.com"
                    android:path="/m/products/scan"
                    android:scheme="http" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data
                    android:host="www.google.co.uk"
                    android:path="/m/products/scan"
                    android:scheme="http" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data
                    android:host="scan"
                    android:path="/"
                    android:scheme="zxing" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.google.zxing.client.android.PreferencesActivity"
            android:label="@string/preferences_name"
            android:stateNotNeeded="true" >
        </activity>
        <activity
            android:name="com.google.zxing.client.android.encode.EncodeActivity"
            android:stateNotNeeded="true" >
            <intent-filter>
                <action android:name="com.google.zxing.client.android.ENCODE" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.SEND" />
                <category android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="text/x-vcard" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.SEND" />
                <category android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="text/plain" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.google.zxing.client.android.book.SearchBookContentsActivity"
            android:configChanges="orientation|keyboardHidden"
            android:label="@string/sbc_name"
            android:screenOrientation="landscape"
            android:stateNotNeeded="true" >
            <intent-filter>
                <action android:name="com.google.zxing.client.android.SEARCH_BOOK_CONTENTS" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.google.zxing.client.android.share.ShareActivity"
            android:screenOrientation="user"
            android:stateNotNeeded="true"
            android:theme="@android:style/Theme.Light" >
            <intent-filter>
                <action android:name="com.google.zxing.client.android.SHARE" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.google.zxing.client.android.history.HistoryActivity"
            android:label="@string/history_title"
            android:stateNotNeeded="true" >
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.google.zxing.client.android.share.BookmarkPickerActivity"
            android:label="@string/bookmark_picker_name"
            android:stateNotNeeded="true" >
            <intent-filter>
                <action android:name="android.intent.action.PICK" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.google.zxing.client.android.share.AppPickerActivity"
            android:configChanges="orientation"
            android:label="@string/app_picker_name"
            android:stateNotNeeded="true" >
            <intent-filter>
                <action android:name="android.intent.action.PICK" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.google.zxing.client.android.HelpActivity"
            android:screenOrientation="user" >
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
    </application>

</manifest>
完成到这一步之后,你会发现项目中还是有很多的错误。不用担心,剩下的错误全部都是由于找不到R文件所造成的。这是因为ZXing项目中所引用的R文件都是com.google.zxing.client.android包下的R,而现在我们拷贝到ScannerTest项目之后,应该引用com.example.scannertest包下的R文件。我们需要将有错误的文件一个个地修改过来,虽然工作量不少,但都是傻瓜式操作,只要大家有耐心,就一定可以完成。

现在ScannerTest项目中应该已经没有任何错误了,然后我们还需要对ZXing的代码进行稍微的定制。

打开CaptureActivity,这个类就是用于扫描二维码的最主要的一个类,其中有一个handleDecode()方法,当二维码扫描完成之后会把结果回调到这个方法中,我们现在不想使用默认的处理方式,于是修改handleDecode()中的代码,如下所示:

  1. publicvoidhandleDecode(Result rawResult, Bitmap barcode,floatscaleFactor) {
  2. String result = rawResult.getText();
  3. if(!TextUtils.isEmpty(result)) {
  4. Intent intent = newIntent();
  5. intent.putExtra("scan_result", rawResult.getText());
  6. setResult(RESULT_OK, intent);
  7. } else{
  8. setResult(RESULT_CANCELED);
  9. }
  10. finish();
  11. }
public void handleDecode(Result rawResult, Bitmap barcode, float scaleFactor) {
	String result = rawResult.getText();
	if (!TextUtils.isEmpty(result)) {
		Intent intent = new Intent();
		intent.putExtra("scan_result", rawResult.getText());
		setResult(RESULT_OK, intent);
	} else {
		setResult(RESULT_CANCELED);
	}
	finish();
}
这里我们将扫描出来的结果借助Intent进行返回。

然后打开或新建activity_main.xml文件做为ScannerTest项目的主布局,在其中添加如下代码:

  1. <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="match_parent"
  3. android:layout_height="match_parent"
  4. android:orientation="vertical">
  5. <Button
  6. android:id="@+id/scan_button"
  7. android:layout_width="match_parent"
  8. android:layout_height="wrap_content"
  9. android:text="扫一扫"/>
  10. <TextView
  11. android:id="@+id/scan_result"
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"/>
  14. </LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <Button
        android: 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="扫一扫" />

    <TextView
        android: 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</LinearLayout>
这个布局文件很简单,一个按钮用于开启二维码扫描功能,一个TextView用于显示扫描结果。

最后打开或新建MainActivity做为ScannerTest项目的主Activity,代码如下所示:

  1. publicclassMainActivityextendsActivity {
  2. publicstaticfinalintSCAN_CODE =1;
  3. @Override
  4. protectedvoidonCreate(Bundle savedInstanceState) {
  5. super.onCreate(savedInstanceState);
  6. setContentView(R.layout.activity_main);
  7. Button button = (Button) findViewById(R.id.scan_button);
  8. button.setOnClickListener(newOnClickListener() {
  9. @Override
  10. publicvoidonClick(View v) {
  11. Intent intent = newIntent(MainActivity.this, CaptureActivity.class);
  12. startActivityForResult(intent, SCAN_CODE);
  13. }
  14. });
  15. }
  16. @Override
  17. protectedvoidonActivityResult(intrequestCode,intresultCode, Intent data) {
  18. switch(requestCode) {
  19. caseSCAN_CODE:
  20. TextView scanResult = (TextView) findViewById(R.id.scan_result);
  21. if(resultCode == RESULT_OK) {
  22. String result = data.getStringExtra("scan_result");
  23. scanResult.setText(result);
  24. } elseif(resultCode == RESULT_CANCELED) {
  25. scanResult.setText("扫描出错");
  26. }
  27. break;
  28. default:
  29. break;
  30. }
  31. }
  32. }
public class MainActivity extends Activity {

	public static final int SCAN_CODE = 1;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		Button button = (Button) findViewById(R.id.scan_button);
		button.setOnClickListener(new OnClickListener() {
			@Override
			public void onClick(View v) {
				Intent intent = new Intent(MainActivity.this, CaptureActivity.class);
				startActivityForResult(intent, SCAN_CODE);
			}
		});
	}

	@Override
	protected void onActivityResult(int requestCode, int resultCode, Intent data) {
		switch (requestCode) {
		case SCAN_CODE:
			TextView scanResult = (TextView) findViewById(R.id.scan_result);
			if (resultCode == RESULT_OK) {
				String result = data.getStringExtra("scan_result");
				scanResult.setText(result);
			} else if (resultCode == RESULT_CANCELED) {
				scanResult.setText("扫描出错");
			}
			break;
		default:
			break;
		}
	}

}
这个类也很简单,点击按钮时,我们通过startActivityForResult()方法启动CaptureActivity,开始执行二维码扫描,扫描的结果将回调到onActivityResult()方法中,然后在这个方法中取出扫描的结果,并展示在TextView上。

这样我们所有的编码工作就已经完成了,可以尝试运行一下了。首先看到程序的主界面如下图所示:

Android二维码功能实现第4张

点击扫一扫后可以进行二维码扫描,见下图:

Android二维码功能实现第5张

扫描完成后会将结果返回到主界面,如下图所示:

Android二维码功能实现第6张

不知道大家有没有成功呢?这里我精心给大家准备了一张二维码图片,看看有多少朋友能够成功扫出来。 ^_^

Android二维码功能实现第7张

另外,ZXing项目是比较庞大的,里面还有很多复杂的功能我们并不需要,如果你有兴趣深度钻研ZXing源码的话,其实还可以简化非常多的代码。 这里我就不带着大家深入研究了,因为我自己都还没完全搞明白呢Android二维码功能实现第8张

好了,今天的讲解到此结束,有疑问的朋友请在下面留言。

源代码下载:http://download.csdn.net/detail/lxq_xsyu/5955731

免责声明:文章转载自《Android二维码功能实现》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

上篇Netty NIO 框架性能压测-短链接-对比TomcatC#(二维数组/集合)下篇

宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

相关文章

Json Schema简介

1. 引言 什么是Json Schema? 以一个例子来说明 假设有一个web api,接受一个json请求,返回某个用户在某个城市关系最近的若干个好友。一个请求的例子如下: { "city" : "chicago", "number": 20, "user" : { "name":"Alex",...

flutter 生成aar文件,嵌入原生android项目

适用于flutter单独开发,android项目单独开发的场景 1:将flutter项目打包成aar文件,详情见官方文档:https://flutter.cn/docs/development/add-to-app/android/add-flutter-screen 2:在原生android项目文件中,项目根目录app/build.gradle文件中添加...

踩坑系列—SqlServer批量新增BigDecimal精度问题&amp;lt;foreach collection="list" item="item" separator="," index="index"&amp;gt;&amp;lt;/foreach&amp;gt;

Insert into ALU_KINGDEE_POWDER_STORE(org_code,verify_date,material_code,material_name,brand,storage,type,weight)VALUES (?,?,?,?,?,?,?,?) , (?,?,?,?,?,?,?,?) ; 11:51:55 [qtp20145...

Web Service学习之六:CXF解决无法处理的数据类型

  CXF不能够处理像Map复杂的数据类型,需要单独转换处理。 总体思路:创建一个转换器和一个对应的可以处理的数据结构类型,将不能处理的类型转换成可以处理的类型: 步骤: 一、创建一个可以处理的类型 举例:要转换Map<String,User> package ws; import java.util.List; public class...

crypto-js遇到的坑

最近在做H5网站,用websocket跟后台交互时,需要对数据进行加密,于是选了crypto-js组件,GitHub上api也不少,写的也清晰,但实际使用上会遇到不少坑: 加密解密时,传入的密钥key,需要转换为特定数组,不能是字符串 加密时,传入的明文需转换为特定数组 解密时,密文数组还要做特别的封装后,才能正确解密 let aes_option =...

使用java防止非法请求

1.过滤器 public class ImgFilter implementsFilter { @Override public void init(FilterConfig filterConfig) throwsServletException { System.out.println("过滤器开始!!!");...