Is it possible to change the colour of the title text within the action bar to a colour of a hex value? I'm only aware of the following and have no idea if this can be achieved:
setTitleColor(Color.Green);
Is it possible to change the colour of the title text within the action bar to a colour of a hex value? I'm only aware of the following and have no idea if this can be achieved:
setTitleColor(Color.Green);
Android < 4.0
You can simply do setTitleColor(Color.parseColor("#000000"));
.
Android >= 4.0
Check this answer https://stackoverflow.com/a/10592561.
You can add hex color values on your color.xml. Then on your activity you try to add this line of code:
setTitleColor(getResources().getColor(R.color.hex_color_id));