getSupportActionBar from inside of Fragment ActionBarCompat

前端 未结 6 945
梦毁少年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:03

    If someone uses com.android.support:appcompat-v7: and AppCompatActivity as activity then this will work

    ((AppCompatActivity)getActivity()).getSupportActionBar().setSubtitle(R.string.subtitle);
    

提交回复
热议问题