How to get data from other activity in android?

后端 未结 5 1127
-上瘾入骨i
-上瘾入骨i 2020-12-31 19:47

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

5条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-31 20:42

    you have a typo:

    bundle.putString("vidoedetails", filedetails);
    

    should be

    bundle.putString("videodetails", filedetails);
    

提交回复
热议问题