Set up toolbar as actionbar in fragment

前端 未结 6 1757
天命终不由人
天命终不由人 2021-02-01 01:51

I want to set up my toolbar as an actionbar, but since your toolbar is a layoutelement it has to be in your layout. Now my layout is in my fragment.

I added the toolbar

6条回答
  •  -上瘾入骨i
    2021-02-01 02:13

    Now ActionBarActivity is deprecated so You need to cast your activity from getActivity() to AppCompatActivity first. Here's an example:

    ((AppCompatActivity) getActivity()).getSupportActionBar().setSubtitle();
    

    The reason you have to cast it is because getActivity() returns a FragmentActivity and you need an AppCompatActivity

提交回复
热议问题