getSupportActionBar from inside of Fragment ActionBarCompat

前端 未结 6 925
梦毁少年i
梦毁少年i 2020-12-07 11:45

I\'m starting a new project that uses the AppCompat/ActionBarCompat in v7 support library. I\'m trying to figure out how to use the getSuppor

6条回答
  •  醉梦人生
    2020-12-07 12:17

    As an updated answer for Pierre-Antoine LaFayette's answer

    ActionBarActivity is deprecated; use AppCompatActivity instead

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

提交回复
热议问题