I'm creating an app and I'm using a library called "SlidingActivity". [Github Link]
I actually have two activities. One being the main activity of the app and the other one extending SlidingActivity
. So when the SlidingActivity
is opened, it's still possible to see the main activity in the background (see the images on the Github page).
Is it possible to edit the content/layout of the main activity when the SlidingActivity
is opened?
I tried using getParent()
but it's returning null
.
Edit: As @Hamza Hathoute suggested I've tried overriding onPause()
and onDestroy()
. I've seen that onPause()
is called each time the SlidingActivity
is opened.
Thanks in advance. I'm new to StackOverflow so if there is anything I've done wrong please tell me!