I\'m having trouble changing androids action bar title color programmatically for v11 and up. I can get it done in xml but need to change it dynamically in code. How should
Another way is using Html
getSupportActionBar().setTitle((Html.fromHtml("" + getString(R.string.some_string) + "")));