How to find last activity from which current activity is opened in android?

前端 未结 5 615
野性不改
野性不改 2020-12-05 09:46

I have one activity which can be open from more 4 or 5 different activity so i can find from which activity my current activity is called...

If any idea please help

5条回答
  •  一向
    一向 (楼主)
    2020-12-05 10:10

    Android has a function for it, if you use startActivityForResult:

    ComponentName prev = this.getCallingActivity();

提交回复
热议问题