Change Action Bar Title color

后端 未结 8 1730
南笙
南笙 2020-12-04 21:57

My code is as below and while it works ( when I change the parent Theme to Theme.Sherlock or Theme.Sherlock.Light the Theme it does changes) it does not changes the Title co

8条回答
  •  佛祖请我去吃肉
    2020-12-04 22:47

    I tried all the above methods, it does n't worked for me.I have just achieved through code below..

    Spannable text = new SpannableString(actionBar.getTitle());
    text.setSpan(new ForegroundColorSpan(Color.BLUE), 0, text.length(), Spannable.SPAN_INCLUSIVE_INCLUSIVE);
    actionBar.setTitle(text);
    

提交回复
热议问题