How to set the text color of TextView in code?

后端 未结 30 3230
你的背包
你的背包 2020-11-22 07:48

In XML, we can set a text color by the textColor attribute, like android:textColor=\"#FF0000\". But how do I change it by coding?

I tried s

30条回答
  •  猫巷女王i
    2020-11-22 08:38

    In Adapter you can set the text color by using this code:

    holder.my_text_view = (TextView) convertView.findViewById(R.id.my_text_view);
    holder.my_text_view.setTextColor(Color.parseColor("#FFFFFF"));
    

提交回复
热议问题