Can anyone explain to me the following code?
Intent intent = new Intent("com.google.zxing.client.android.SCAN");
startActivityForResult(intent, 0);
In the zxing barcode scanner code in Intents.java (like the above). The intent will call which activity and so on?
Thanks in Advance