Set Text Color for textView Android

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

In the string.xml file i use the following tag

 \"#0000ff\"

If I use

 textview         


        
8条回答
  •  不知归路
    2021-02-06 04:05

    This may be easier:

    TextView textresult = (TextView)findViewById(R.id.textView1);
    textresult.setTextColor(Color.RED);
    

提交回复
热议问题