How to change action bar title color in code

前端 未结 6 1290
陌清茗
陌清茗 2020-11-27 05:28

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

6条回答
  •  悲哀的现实
    2020-11-27 06:03

    Another way is using Html

    getSupportActionBar().setTitle((Html.fromHtml("" + getString(R.string.some_string) + "")));
    

提交回复
热议问题