Answers for "how to use values in other activities android studio"

3

send variable intent

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

how to pass string between activities android

Bundle extras = getIntent().getExtras();
if(extras !=null) {
    String value = extras.getString("KEY");
}
Posted by: Guest on February-23-2020

Code answers related to "how to use values in other activities android studio"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language