sending bundle to another activity

前端 未结 6 1144
再見小時候
再見小時候 2021-01-15 03:03

I am trying to send a bundle from one activity to another. When I load the bundle in the recieving activity all the information seems to be null. Here is some code:

6条回答
  •  南方客
    南方客 (楼主)
    2021-01-15 03:47

    Activity A (sending bundle): intent.putExtra("Hotel Bundle", b);

    Activity B (loading the bundle): getintent().getExtra("Hotel Bundle");

    not getintent().getExtra*s*

提交回复
热议问题