我想做什么:扫描条形码并在一个屏幕上列出它们的信息。 例如。第1册= 30美元,第2册= 21美元
类似的东西。
我引用的内容:
我发现了http://as400samplecode.blogspot.com/2011/09/android-barcode-scanner-using-zxing.html和Scanning Barcodes (ZXing) in a own Thread and displaying a ProgessDialog 还Using ZXing to create an android barcode scanning app
从那些我意识到我必须导入IntentIntegrator,但是当我导入时,我在这个类中遇到了几个错误:
The method onClick(DialogInterface, int) of type new DialogInterface.OnClickListener(){} must override a superclass method
The method onClick(DialogInterface, int) of type new DialogInterface.OnClickListener(){} must override a superclass method
请通过一些例子告诉我。因为我已经读了5个小时而且我不知道这件事应该是什么样的。
答案 0 :(得分:2)
您可能正在使用Java 1.5编译器编译项目。
在Eclipse中,您可以在项目 - >下更改它属性 - > Java编译器。在那里,您可以尝试停用启用项目特定设置,或手动将编译器合规性级别设置为 1.6 。