getSupportActionBar from inside of Fragment ActionBarCompat

前端 未结 6 938
梦毁少年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条回答
  •  萌比男神i
    2020-12-07 12:20

    While this question has an accepted answer already, I must point out that it isn't totally correct: calling getSupportActionBar() from Fragment.onAttach() will cause a NullPointerException when the activity is rotated.

    Short answer:

    Use ((ActionBarActivity)getActivity()).getSupportActionBar() in onActivityCreated() (or any point afterwards in its lifecycle) instead of onAttach().

    Long answer:

    The reason is that if an ActionBarActivity is recreated after a rotation, it will restore all Fragments before actually creating the ActionBar object.

    Source code for ActionBarActivity in the support-v7 library:

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        mImpl = ActionBarActivityDelegate.createDelegate(this);
        super.onCreate(savedInstanceState);
        mImpl.onCreate(savedInstanceState);
    }
    
    • ActionBarActivityDelegate.createDelegate() creates the mImpl object depending on the Android version.
    • super.onCreate() is FragmentActivity.onCreate(), which restores any previous fragments after a rotation (FragmentManagerImpl.dispatchCreate(), &c).
    • mImpl.onCreate(savedInstanceState) is ActionBarActivityDelegate.onCreate(), which reads the mHasActionBar variable from the window style.
    • Before mHasActionBar is true, getSupportActionBar() will always return null.

    Source for ActionBarActivityDelegate.getSupportActionBar():

    final ActionBar getSupportActionBar() {
        // The Action Bar should be lazily created as mHasActionBar or mOverlayActionBar
        // could change after onCreate
        if (mHasActionBar || mOverlayActionBar) {
            if (mActionBar == null) {
                ... creates the action bar ...
            }
        } else {
            // If we're not set to have a Action Bar, null it just in case it's been set
            mActionBar = null;
        }
        return mActionBar;
    }
    

提交回复
热议问题