android - trigger an event in another activity -


There is a way to trigger an event in another activity that can be under the current activity in the stack (currently down from The activity activity is not a part of my application). For example: If 'A' activity 'Act 1' launches activity 'Act 12' of APPLICITY 'AB', then 'Act' There is a way for '12' to trigger an event (like backbuttonpress () or onPause () etc)? Thanks in advance.

You will only be able to do this if you have access to the source code, both of the applications are hidden Through an intent-filter in the application, or if another application has already been assigned an intent filter which is what you want to do. onPause () will be called as activity is hidden

Comments