Activity ignore intent's extra fields
- by ced
For example,
In an ActivityA there's a button to create an Intent that will start ActivityB in a new task, like this:
Intent i = new Intent(this, ActivityB.class);
i.setData(Uri.parse("http://www.google.com"));
long timestamp = System.currentTimeMillis();
i.putExtra("ts", timestamp);
i.addFlag(Intent.FLAG_ACTIVITY_NEW_TASK);
Log.d(TAG, "Sending:…