I have two activities such as Activity A and B and I\'m trying to pass two different strings from A to B using Bundle and startActivity(inten
Activity
Bundle
startActivity(inten
you have a typo:
bundle.putString("vidoedetails", filedetails);
should be
bundle.putString("videodetails", filedetails);