in our app we have a Button which starts the Camera. At the same time we want to show a Toast which rotates when the user rotate the screen/change orientation, during the camera is shown.
The problem here is, that we start the Toast with the Context of our fragment/activity. As long as the Camera is shown the Toast doesn't recognize that his "originally" context (Activity/Fragment) change its orientation, because it's dead!
I doubt if Toast is the best solution to do this... Maybe there is something more appropriate then a Toast for this situation?
Thanks in advance!