PutExtra doesn't work on the retriever side

前端 未结 4 1203
借酒劲吻你
借酒劲吻你 2021-01-07 06:18

I want to sent intent from one first activity to another.

The first activity sends an intent to the second activity in order to create a new AlertDialog, receive a n

4条回答
  •  北恋
    北恋 (楼主)
    2021-01-07 06:48

    Try

    Bundle extra=data.getExtras();
    

    Insted of

    Bundle extra=getIntent().getExtras();
    

提交回复
热议问题