QR code scanner
问题 I would like to create a QR code scanner in my app. I went through the zxing ,but I could not understand it. I am interested in QR codes only. All help is highly appreciated. 回答1: Place a copy of the com.google.zxing.client.* source packages into your project. You can start the zxing scanning activity like this: Intent intent = new Intent(this, CaptureActivity.class); startActivityForResult(intent, 0); In the same activity that you invoked the CaptureActivity in you can handle the result when