Answers for "take current value from activity into another activity kotlin without intent"

0

kotlin android intent pass data

//Send value from HomeActivity

val intent = Intent(this@HomeActivity,ProfileActivity::class.java)
intent.putExtra("Username","John Doe")
startActivity(intent)

//Get values in ProfileActivity

val profileName=intent.getStringExtra("Username")
Posted by: Guest on May-15-2020

Code answers related to "take current value from activity into another activity kotlin without intent"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language