im working on my first project in Android Studio & I wonder how to use data from a User Input in another Activity (that is not the following Activity)
ItemAdapter.OnClickListener {
override fun onClick(position: Int, item: EmpUserClass) {
val intent = Intent(this@LoginActivity, OverviewActivity::class.java)
intent.putExtra(USER_DETAILS, item)
startActivity(intent)
}
works fine on the next Activity. How can i manage it on following Activities?