Eclipse Android Project Throws Class Not Found Error During Runtime
问题 I am trying to incorporate ZXing into my own android app via intent, and am having difficulty. I can compile my code fine, but when it tries to call the following after a button click it dies on the IntentIntegrator() constructor: public void ScanCheck(View view){ try{ IntentIntegrator integrator = new IntentIntegrator(MainActivity.this); integrator.initiateScan(); }catch(Exception e){ return; } } the above code is verbatim and MainActivity is the name of my class. I typically program in C#