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.
You can use the onDestroyOptionsMenu() method inside your Fragment:
onDestroyOptionsMenu()
public void onDestroyOptionsMenu() { super.onDestroyOptionsMenu(); if (mActionMode != null) { mActionMode.finish(); mActionMode = null; } }