“setSupportActionBar(toolbar)” inside FragmentActivity?

后端 未结 9 2112
被撕碎了的回忆
被撕碎了的回忆 2021-02-03 18:02

How do I access setSupportActionBar(Toolbar toolbar) inside FragmentActivity? I can\'t access it inside FragmentActivity

t         


        
9条回答
  •  北海茫月
    2021-02-03 18:36

    With the latest version of the support library you should make your Activity extend AppCompatActivity as ActionBarActivity has been deprecated.

    It provides the same functionality as your ActionBarActivity previously did. You shouldn't need to make any further changes.

提交回复
热议问题