This SO question deals with the memory leak caused by saving the View instance returned by a fragment, allowing the onCreateView of a fragment to return the same View under certain circumstances. The conclusion there is that the saved View will hold the Activity (via Context), never allowing it to release - resulting in a memory leak.
My question in this context, is: If I'm implementing my whole app in a single activity, could I consider this problem as irrelevant? Or are there other considerations not to save it?
Thanks! Danny.
Edit: To make things worse, what would be the case if the View is given as a parameter to the Fragment constructor?