Set title for contextual action bar

android, android-actionbar

Solution

I manage to set the title by calling setTitle method of ActionMode.

mActionMode.setTitle("Title for cab");

Problem

I want to set the title for the contextual action bar (like in the image below). I have tried the following: ``` getActionBar().setTitle("Title for cab"); ``` but title is not showing up.

Original source