List of usage examples for android.app Fragment initState
void initState()
From source file:android.app.FragmentManager.java
void makeInactive(Fragment f) { if (f.mIndex < 0) { return;//from w ww. j a v a2s.co m } if (DEBUG) Log.v(TAG, "Freeing fragment index " + f); mActive.set(f.mIndex, null); if (mAvailIndices == null) { mAvailIndices = new ArrayList<Integer>(); } mAvailIndices.add(f.mIndex); mActivity.invalidateFragment(f.mWho); f.initState(); }