In this case, QR code will be generated synchronously. Thus it means you may take a risk blocking the UI thread, which would lead to Application Not Responding (ANR). I strongly recommend you to use it in a non-UI thread.
Thread{
kotlin.run {
var qrCode:Bitmap=AwesomeQRCode.Renderer().contents(contents).size(800).margin(20).render()
}
}.start()
Generate a QR code asynchronously and show the QR code in an ImageView:
AwesomeQRCode.Renderer().contents(contents)
.size(800).margin(20)
.renderAsync(object : AwesomeQRCode.Callback {
overridefunonRendered(renderer: AwesomeQRCode.Renderer, bitmap: Bitmap) {
// Tip: here we use runOnUiThread {...} to avoid the problems caused by operating UI elements from a non-UI thread.runOnUiThread {
imageView!!.setImageBitmap(bitmap)
}
overridefunonError(renderer: AwesomeQRCode.Renderer, e: Exception) {
e.printStackTrace()
}
})
Parameters
Parameter
Type
Explanation
Default Value
Misc.
contents
String
Contents to encode.
null
Required
size
int-px
Width as well as the height of the output QR code, includes margin.
800
Required
margin
int-px
Margin to add around the QR code.
20
Required
dataDotScale
float
Value used to scale down the data dots' size.
0.3f
(0, 1.0f)
colorDark
int-color
Color of "true" blocks. Works only when both colorDark and colorLight are set.
Color.BLACK
colorLight
int-color
Color of empty space, or "false" blocks. Works only when both colorDark and colorLight are set.
Color.WHITE
background
Bitmap
Background image to embed in the QR code. Leave null to disable.
null
whiteMargin
int-px
If set to true, a white border will appear around the background image.
true
autoColor
boolean
If set to true, the dominant color of backgroundImage will be used as colorDark.
true
binarize
boolean
If set to true, the whole image will be binarized with the given threshold, or default threshold if not specified.
fasle
binarizeThreshold
int
Threshold used to binarize the whole image.
128
(0, 255)
roundedDataDots
boolean
If set to true, data dots will appear as solid dots instead of blocks.
false
logo
Bitmap
Logo image to embed at the center of generated QR code. Leave null to disable.
null
logoMargin
int-px
White margin that appears around the logo image. Leave 0 to disable. LOGO
10
logoCornerRadius
int-px
Radius of the logo's corners. Leave 0 to disable.
8
logoScale
float
Value used to scale the logo image. Larger value may result in decode failure.
0.2f
(0, 1.0f)
Changelog
Version 1.0.5
The way to use AwesomeQRCode is more elegant.
Version 1.0.4
New feature: Embedding a logo image in the QR code.
Sample/Demo application updated.
Version 1.0.3
Added CHARACTER_SET => UTF-8 to QR code's hints before encoding.
Copyright 2017 Sumi Makito
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
请发表评论