I have the following scenario. A tabhost manages four ListFragmnet. For every ListFragment I have several fragment. For instance associated with the ListFragmnet 1 I have the fragments A, B, C and can happens that fragment A "launch" fragment B which can launch fragment C. Is correct to allow fragments to start each other or is there a more correct way?
Thanks
Edit:
TabFragmentActivity:
tab1(ListFragment): fragment 1 -> fragment 2 -> .... -> fragment N
tab2(ListFragment): fragment 1 -> fragment 2 -> .... -> fragment N
tab3(ListFragment): fragment 1 -> fragment 2 -> .... -> fragment N
tab4(ListFragment): fragment 1 -> fragment 2 -> .... -> fragment N
this is want to achieve. So, my question is what is the best way to manage transaction from fragment 1 to fragment N per tab?
Again thanks