I want to create notification that when it clicked will bring my app to front but without changing (reload or navigate out) the last activity that was shown.
You don't ever set Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT. That flag is set by Android when it brings the activity to the front. You setting it has no effect.
There's a few ways to do what you want. Check out this answer