Answers for "how to get data from another activity without changing activities android studio"

3

send variable intent

String sessionId = getIntent().getStringExtra("EXTRA_SESSION_ID");
Posted by: Guest on May-27-2020
2

send variable intent

Intent intent = new Intent(getBaseContext(), SignoutActivity.class);
intent.putExtra("EXTRA_SESSION_ID", sessionId);
startActivity(intent);
Posted by: Guest on May-27-2020

Code answers related to "how to get data from another activity without changing activities android studio"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language