List of utility methods to do Intent Copy
void | copyIntentData(Intent aReceived, Intent aDispatch) Method copies the intent extras from the received intent to the intent that will be dispatched. Set<String> lKeys = aReceived.getExtras().keySet();
for (String lKey : lKeys) {
aDispatch.putExtra(lKey, aReceived.getStringExtra(lKey));
|