0

How show app when it app finished and the user clicked in recent task, my app don't show correctly, this show other screen, in this App, i use animation when transtion activity and it app is finish this execute finishedAfterTransition in exist in Android 5.0.

here is a image the App when show in recent task:

enter image description here

  • do you want to remove ur app (EL Uni) from cerrar TODO? once it finished? – Charuක Jul 26 '16 at 01:00
  • It seems that the guy is having problems with his app displaying correctly when he views "recent apps"/square button. Although I don't know the answer it could be because of the animation is not done properly or as suggested your intents are messed up. Try creating a blank new app, with some lorem ipsum and if that works then switch to your app and slowly try to work out what part of your app is messed up. I assume you restarted your phone in case Android is bugged, had this once on some built in Google apps. – eeffoc Jul 26 '16 at 01:28

1 Answers1

1

maybe your intents did not finish correctly.Check them

if you want to remove it from resent tasks .. different ways to approach

use

finishAndRemoveTask();

when user exits it.

for the activity in manifest file

  android:excludeFromRecents="true"
Charuක
  • 12,953
  • 5
  • 50
  • 88