How to set title color in ActionBarSherlock?
Which theming attributes should I use?
you can do it from 2 places either in style.xml or programatically
1.From style.xml
2.Or in code
int titleId = Resources.getSystem().getIdentifier("action_bar_title", "id", "android");
TextView yourTextView = (TextView)findViewById(titleId);
yourTextView.setTextColor(getResources().getColor(R.color.myColor));
Or using actionbar you can also achieve this
getSupportActionBar().setTitle(Html.fromHtml("App Name"));