contextual action mode in fragment - close if not focused?

前端 未结 5 912
小蘑菇
小蘑菇 2021-02-04 15:08

i implemented a contextual action mode bar in a nested fragement. This fragment is part of a view pager and the view pager is also a fragment and part of a navigation drawer.

5条回答
  •  醉酒成梦
    2021-02-04 16:09

    You can use the onDestroyOptionsMenu() method inside your Fragment:

    public void onDestroyOptionsMenu() {
        super.onDestroyOptionsMenu();
        if (mActionMode != null) {
            mActionMode.finish();
            mActionMode = null;
        }
    }
    

提交回复
热议问题