TextView的setTextColor

通常在开发中,我们都是在XML里边对TextView设置TextColor。但是有个别时候确实需要通过代码进行设置,今天就来简单介绍一下使用代码设置的方法。

        TextView textView = new TextView(this);
//        取资源文件中配置的值
        textView.setTextColor(getColor(R.color.colorPrimary));
//        通过数字转化,argb用法类似
        textView.setTextColor(Color.rgb(255, 255, 255));
//        通过颜色值来转化
        textView.setTextColor(Color.parseColor("#ffffff"));
//        直接写16进制的颜色,注意一定要是ARGB格式
        textView.setTextColor(0xffffffff);

你可能感兴趣的:(TextView的setTextColor)