私の質問は、pdf417 バーコード形式をスキャンすると、スキャン結果に基づいて UPC_E 形式が返されることがありますか?
ここに私のコードのスニペットがあります
private BarcodeView barcodeView;
private BarcodeCallback callback = new BarcodeCallback() {
@Override
public void barcodeResult(BarcodeResult result) {
if (result.getText() != null) {
Toast.makeText(getActivity(), result.getText(), Toast.LENGTH_LONG).show();
}
}
@Override
public void possibleResultPoints(List<ResultPoint> resultPoints) {
}
};
ここはライブラリです
compile 'com.journeyapps:zxing-android-embedded:3.3.0'