[android-developers] Regarding Fragment Management.

2011-03-09 Thread sandy
Can you tell me Who is it responsible for creating fragments i.e who will call onCreateView()..etc functions? Is it taken care by Fragment Manager or Activity Manager?? And is it True that fragmentTransaction.commit() is the function responsible for creating fragments means is it that function

Re: [android-developers] Regarding Fragment Management.

2011-03-09 Thread Dianne Hackborn
The framework calls all onXxx() functions. The fragment manager will take care of calling the right things at the appropriate places based on what you commit and the hosting activity lifecycle. On Wed, Mar 9, 2011 at 5:16 AM, sandy sandhyasee...@gmail.com wrote: Can you tell me Who is it