android - Whats happen to old intent when new intent received? -
there 3 activity (a-b-c)
activity send intent activity b first
then activity c send intent activity b
in activity b, getintent()
return newer intent? in other words: newer intent overriding older intent?
is there way keep intent history?
solved: if start activity b activity a , want relaunch activity c intent's flag >>> flag_activity_single_top
<<< need in activity b override protected void onnewintent(intent intent)
, new intent received activity c
Comments
Post a Comment