PutExtra doesn't work on the retriever side

前端 未结 4 1151
借酒劲吻你
借酒劲吻你 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:49

    try with this.

     Bundle extras = getIntent().getExtras();
     int a=extras.getInt("data1");
    

提交回复
热议问题