Xamarin Android QR-Image ZXing - Not working
问题 My project with Xamarin and MvvmCross has a Core-Project (to share code). In this Core-Project, I generate a QR-Image and save it to the local-drive in my Android-App. The following code generates the bytes for a content (always an url): var options = new QrCodeEncodingOptions { Height = 300, Width = 300, Margin = 0, PureBarcode = true }; var writer = new BarcodeWriter { Format = BarcodeFormat.QR_CODE, Options = options }; return writer.Write(content); I save this byte-array with the File