0

I downloaded the latest Barcode Scanner (https://code.google.com/p/zxing/downloads/detail?name=BarcodeScanner4.5.apk&can=3&q=Barcode+Scanner) and installed it onto my device. Here it is:

shell@android:/ $ pm list packages -3
package:com.google.zxing.client.android

Yet, when I try to run it, the class cannot be found:

shell@android:/ $ am start -n com.google.zxing.client.android/.SCAN            
Starting: Intent { cmp=com.google.zxing.client.android/.SCAN }
Error type 3
Error: Activity class {com.google.zxing.client.android/com.google.zxing.client.android.SCAN} does not exist.

Am I using the correct class?

4

1 回答 1

1

您似乎将意图操作与类名混淆了。您可以从清单中看到 Activity 的类是.CaptureActivity.

于 2013-11-14T02:13:04.817 回答