ActionBar text color

后端 未结 24 2643
日久生厌
日久生厌 2020-11-22 05:31

how can I change the text color of the ActionBar? I\'ve inherited the Holo Light Theme, I\'m able to change the background of the ActionBar but I don\'t find out what is the

24条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-22 06:23

    The most straight-forward way is to do this in the styles.xml.

    Google's template styles.xml currently generates the following:

    
    

    If you add one more line before the closing tag, as shown, that will change the text color to what it should be with a Dark ActionBar:

    
    

    If you want to customize the color to something else, you can either specify your own color in colors.xml or even use a built-in color from Android using the android:textColorPrimary attribute:

    
    
    
    
    

    Note: This changes the color of the title and also the titles of any MenuItems displayed in the ActionBar.

提交回复
热议问题