Answers for "pass data object for one activity to android through intent kotlin"

1

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 "pass data object for one activity to android through intent kotlin"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language