can I use a compatible action bar AND a fragment in the same activity?

后端 未结 4 1898
-上瘾入骨i
-上瘾入骨i 2021-02-07 04:30

OK, I\'ve been extending my activities to

extends ActionBarActivity

My main menu page

extends FragmentActivity
4条回答
  •  醉话见心
    2021-02-07 04:46

    Experienced same problem and the solution, as mentioned in other responses, is to edit your ActionBarActivity class.

    This class is defined in your code (com.google.android.actionbarcompat). The only thing you have to do is change extends Activity to extends FragmentActivity from the android.support.v4.app.FragmentActivity.

提交回复
热议问题