Nope! You have to do it at runtime.
If you want to make your app backwards compatible, then simply check the device API level. If it is higher than 11, then you can fiddle with the ActionBar and set the subtitle.
if(Integer.valueOf(android.os.Build.VERSION.SDK) >= 11){
//set actionbar title
}