Set Text Color for textView Android

后端 未结 8 1848
梦谈多话
梦谈多话 2021-02-06 03:41

In the string.xml file i use the following tag

 \"#0000ff\"

If I use

 textview         


        
8条回答
  •  我在风中等你
    2021-02-06 03:50

    try set color like this may helps you

    txt.setTextColor(Color.rgb(0, 87, 48));
    

    this is different way but it can change color , here need Red,Green,Blue Code to pass

提交回复
热议问题