私のアンドロイドアプリケーションでzxingを使用してバーコードを取得すると、形式がEAN_13として返されますが、if if staementと判断されない場合はEAN_13が表示されます私のトースト通知で。なぜそれが壊れているかについての手がかりは? JavaではMy java if文が正常に機能していないようです
public void onActivityResult(int requestCode, int resultCode, Intent intent) {
IntentResult scanResult = IntentIntegrator.parseActivityResult(requestCode, resultCode, intent);
if (scanResult != null) {
if (resultCode == 0){
//If the user cancels the scan
Toast.makeText(getApplicationContext(),"You cancelled the scan", 3).show();
}
else{
String contents = intent.getStringExtra("SCAN_RESULT");
String format = intent.getStringExtra("SCAN_RESULT_FORMAT").toString();
if (format == "EAN_13"){
//If the barcode scanned is of the correct type then pass the barcode into the search method to get the product details
Toast.makeText(getApplicationContext(),"You scanned " + contents, 3).show();
}
else{
//If the barcode is not of the correct type then display a notification
Toast.makeText(getApplicationContext(),contents+" "+format, 3).show();
}
}
}
}
また、何が起こるかを知るために.toString()を追加しましたが、私のif文が間違っています。 –