FragmentActivity和Activity的具体区别在哪里

来源:互联网 发布:周星驰演技 知乎 编辑:程序博客网 时间:2024/05/03 09:27
fragment是3.0以后的东西,为了在低版本中使用fragment,就要用到android-support-v4.jar兼容包,而fragmentActivity就是这个兼容包里面的,它提供了操作fragment的一些方法,其功能跟3.0及以后的版本的Activity的功能一样。也就是说,3.0版本以后,如果可以在Activity中直接使用Fragment了,而不需要FragmentActivity来包装了。下面是API中的原话:FragmentActivity is a special activity provided in the Support Library to handle fragments on system versions older than API level 11. If the lowest system version you support is API level 11 or higher, then you can use a regular Activity.
0 0