Android fragments hide show OnHide/OnShow?

user498584 picture user498584 · Aug 15, 2011 · Viewed 12.2k times · Source

I am asking this cuz I am sort of curious.

1 ) Most google demos finds fragments by its ID if the fragment is already been created in xml.

So if we take that approach, the way we show fragments is by hiding it and showing it since the fragments are already created.

2) There are also examples provided by google where you can create the fragment with a constructor and inflate it. This acts weird by the way like getActivity() returns null if it is called with in that fragment.

So If i take the first approach I have to hide and show the fragments. So why does not google provide hooks to the fragments like onHide or onShow so that we can handle things properly instead if doing the clean up ourselves with functions that we implement and call explicitly.

Answer

Thomas Ahle picture Thomas Ahle · Sep 14, 2011

If you want to hook op on onHide/onShow just override

public void onHiddenChanged(boolean hidden) {
}

in your fragment.