When pressing home or back in app causes screen to flicker after activity closes

Bignadad

I have spent quite a while trying to get rid of this flicker and was hoping someone could point me in the right direction. Not sure what code to post so if you don't mind i will post whatever is asked for.

The issue is that when i press back or home the activity closes but then for a split second it flashes (flickers) back on the screen then is gone again. sometimes the flicker is very quick and not very noticeable but other times its a little longer (maybe a full second). It happens on emulator and actual device. Happens on Android 4.4+, Android 5.0+ and 6.0+ Devices

I have tried removing things from manifest, styles, onbackpressed, onpause, onstop, etc...

What i have is a AppCompatActivity with many fragments. Im using the Theme.AppCompat.Light.NoActionBar theme and a toolbar with navigation drawer.

Like i said i know im not posting much code but not sure where to start. I have searched this site for this issue and can't find anything related so not sure what parts of my code to post.

SCCC

You can try calling

overridePendingTransition(0, 0)

when your main activity finishes, i.e, in either of the onPause() or onBackPressed() method of your AppCompatActivity. Also make sure all your fragments are getting destroyed, you may have to manually remove the fragments by calling

fragmentTransaction.remove(fragment).commit()

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Pressing home button and going back into the app causes the app to crash

From Dev

Android: When resuming app after pressing home, app always starts at root Activity

From Dev

App closes on pressing back button when trying to move to previous fragment

From Dev

Avoid splash screen activity when pressing Back button

From Dev

Pressing Alt+Left/Right causes screen flicker

From Dev

Blank activity or fragment on reopening app after closing by pressing back button

From Dev

app closes after closing an activity

From Dev

ANDROID: Activity state after pressing the back button

From Dev

what causes my app crashing when coming back to screen?

From Dev

Black screen when pressing Home button

From Dev

Black screen when pressing Home button

From Dev

UI flicker while pressing back in android

From Dev

UI flicker while pressing back in android

From Dev

App force closes when going to a certain activity

From Dev

App closing when pressing go back button

From Dev

When pressing the back button on the phone, the app minimizes

From Dev

Life cycle of Android Activity after pressing Back button

From Dev

going back to the parent activity on pressing app icon button

From Dev

Pressing back button stops app during Camera activity

From Dev

going back to the parent activity on pressing app icon button

From Dev

Android activity go back to activity that started it instead of parent activity when pressing navigation bar back button

From Dev

when back to activity app crashed

From Dev

how to make iOS app relaunch every time after user goes back to home screen?

From Dev

Don't kill Activity when pressing back button

From Dev

Android closes on login screen when backspace pressed on login activity

From Dev

Going to the apps screen when pressing the back button in android

From Dev

How to hide back button on a home screen after splash screen in android?

From Dev

How to resume MediaPlayer in Android after pressing the home button and reopen the app

From Dev

Starting Activity on condition produces a flicker on screen

Related Related

  1. 1

    Pressing home button and going back into the app causes the app to crash

  2. 2

    Android: When resuming app after pressing home, app always starts at root Activity

  3. 3

    App closes on pressing back button when trying to move to previous fragment

  4. 4

    Avoid splash screen activity when pressing Back button

  5. 5

    Pressing Alt+Left/Right causes screen flicker

  6. 6

    Blank activity or fragment on reopening app after closing by pressing back button

  7. 7

    app closes after closing an activity

  8. 8

    ANDROID: Activity state after pressing the back button

  9. 9

    what causes my app crashing when coming back to screen?

  10. 10

    Black screen when pressing Home button

  11. 11

    Black screen when pressing Home button

  12. 12

    UI flicker while pressing back in android

  13. 13

    UI flicker while pressing back in android

  14. 14

    App force closes when going to a certain activity

  15. 15

    App closing when pressing go back button

  16. 16

    When pressing the back button on the phone, the app minimizes

  17. 17

    Life cycle of Android Activity after pressing Back button

  18. 18

    going back to the parent activity on pressing app icon button

  19. 19

    Pressing back button stops app during Camera activity

  20. 20

    going back to the parent activity on pressing app icon button

  21. 21

    Android activity go back to activity that started it instead of parent activity when pressing navigation bar back button

  22. 22

    when back to activity app crashed

  23. 23

    how to make iOS app relaunch every time after user goes back to home screen?

  24. 24

    Don't kill Activity when pressing back button

  25. 25

    Android closes on login screen when backspace pressed on login activity

  26. 26

    Going to the apps screen when pressing the back button in android

  27. 27

    How to hide back button on a home screen after splash screen in android?

  28. 28

    How to resume MediaPlayer in Android after pressing the home button and reopen the app

  29. 29

    Starting Activity on condition produces a flicker on screen

HotTag

Archive