Nik
Nik

Reputation: 7214

Android fragments: replace fragment from other fragment

It is possiable to make this UI arcitrcture:

                    |-Fragment A              |-Tab A (Fragment)
                    |                         |
Fragment Activity <-|-Fragment with Tabhost <-|-Tab B (Fragment)
                    |                         |
                    |-Fragment B              |-Tab C (Fragment)

Fragment A, B Fragment with Tabhost place in FrameActivity directly. Tabs A, B and C plase in fragment with Tabhost.

Tab Fragment mast have ability to replace fragment with Tabhost to other fragment (A or B).

It is possible to make? May be exists good example? Thanks!

Upvotes: 0

Views: 423

Answers (1)

barisemreefe
barisemreefe

Reputation: 434

As far as i know you cannot add fragments into fragments.In design document it's written that "A fragment must always be embedded in an activity and the fragment's lifecycle is directly affected by the host activity's lifecycle." So your design seems like impossible to develop for now.

Upvotes: 1

Related Questions