I have used Glide for image loading (Image which is inside my fragment). And handle the fragment backstack on backpress for navigating between the fragments. After loading the image my fragment backstack replaces with following fragment
com.bumptech.glide.manager.SupportRequestManagerFragment
entry so I'm unable to handle the backstack now, I don't want the glide SupportRequestManagerFragment to be attach in the fragment backstack also I have read the glide doc in the following link
They have mentioned that that passing context will attach the Glide to Application life cycle based on the context parameter. Now my requirement is that without affecting the fragment backstack how to load the image using glide, is it possible? or is there any other way to do it by configuring the Glide options?
Anyone help me or suggest the way to over come this issue?