I need to pass information between two actions, but for some reason the information is not sent / not received.
LogCat does not give me any errors. Dubbing clearly shows that something is added to the intent (variabl: mExtras), but it is difficult to accurately interpret what is added. After that, he gives me a "source not found" and does not help me further.
But first, first. So far, am I doing everything right?
Dispatch
Intent intent = new Intent ( this, TaskListActivity.class );
intent.putExtra ( ProjectManager.ID, mId.toString () );
startActivity ( intent );
RECEIVE:
Intent intent = getIntent ();
mId = UUID.fromString ( intent.getStringExtra ( ProjectManager.ID ) );
source
share