Android setting text view color from java code

前端 未结 9 1338
一个人的身影
一个人的身影 2021-02-07 06:43

I have a list and i write a custom adapter for this. And I want to set some text color for this (e.g. Orange color code #F06D2F). I am presenting the code snippet for my g

9条回答
  •  猫巷女王i
    2021-02-07 06:51

    Yes, You can try this

    textview.setTextColor(this.getResources().getColor(R.color.orange));
    

提交回复
热议问题