My question is apart from the obvious inheritance differences, what are the main differences between Fragment and FragmentActivity? To what scenarios are each class best suited? I'm trying to get an understanding of why both of these classes exist...
|
|
||||
|
|
|
A
A
If your project is targeting HoneyComb or newer only, you should use Some details: A thing to be careful with: If you are using a
if you are using a
so, dont do
or
Also useful to know is that while a fragment has to be embedded in an |
|||||
|
|
FragmentActivity is our classic Activity with fragment support, nothing more. Therefore FragmentActivity is needed, when a Fragment will be attached to Activity. Well Fragment is good component that copy the basic behaviors of Activity, still not a stand-alone application component like Activity and needs to be attached to Activity in order to work. Look here for more details |
|||
|
|
|
Think of FragmentActivity as a regular Activity class that can support Fragments. Prior to honeycomb, activity could not supoprt Fragments, so this is needed in activities that use Fragments. If your target distribution is Honeycomb and beyond you can extend off of Activity instead |
|||
|
|
|
a FragmentActivity is an ad-hoc activity that contains Fragment. In these few words I have explain you one of the main important changes that, with android 3.0(HoneyComb), android team has inserted in the android sdk. With these new kind of concept your pieces of code and layout becomes more flexible and maintainable. If you search on google there are a lot of examples. |
|||
|
|
