Android - Activity vs FragmentActivity

摘要:Android - Activity vs FragmentActivity

今天看到FragmentActivity,不知道做什麼用的。

查一下google

查到如下:

http://stackoverflow.com/questions/15318518/android-activity-vs-fragmentactivity

 

比較重點的會是在

Also remember use Activity if you are using android.app.Fragment; use FragmentActivity if you are using android.support.v4.app.Fragment. Never attach a android.support.v4.app.Fragment to a android.app.Activity, as this will cause an exception to be thrown.

其實意思應該是如果你使用的是android.app.Fragment 的類別時,需使用android.app.Activity

若是使用 android.support.v4.app.Fragment,則需使用FragmentActivity。

若搭配錯誤的話,則會出現Exception