EdisonLi

Results 6 issues of EdisonLi

当文本框很小的时候 比如设置文本框20dp 输入的文字不能居中

比如 186xxx12346 这样的手机号 我只记住了 12346 可否将其查出来? 分词器是不是要对数字串滑窗切词?

wontfix

``` suspend fun decodeFrom3rd(targetBmp: Bitmap): String? = suspendCancellableCoroutine { continuation -> BarcodeDecoder.process(targetBmp, Barcode.FORMAT_QR_CODE).addOnSuccessListener { if (it.isNotEmpty()) { continuation.resumeWith(Result.success(it.firstOrNull()?.rawValue)) } else { continuation.resumeWithException(Resources.NotFoundException("No QR code found")) } } } ```

Stale