How to pass int value from one activity to another and display in TextView? [duplicate]

Try this,

   String baVal = intent.getExtras().get("yzValue").toString() ;

Leave a Comment