I want to set title and subtitile of my action bar before compile time. I got a way to do it like this:
ActionBar ab = getActionBar(); ab.setTitle(\"My Title
Try this one:
android.support.v7.app.ActionBar ab = getSupportActionBar(); ab.setTitle("This is Title"); ab.setSubtitle("This is Subtitle");