How can I pass values between Activities on Android?

前端 未结 6 1180
轮回少年
轮回少年 2020-11-30 02:09

This is the navigation of my application:

Activity1 calls Activity2Activity2.finish(), call Activ

6条回答
  •  庸人自扰
    2020-11-30 02:41

    Also there is other technique, you can call startActivity(new Intent(getApplicationContext(),Activity1.class)) method along with the Bundle class to transfer data from activity3 to activity1.

提交回复
热议问题