Android 控件设置颜色的几种方式

转自:https://blog.csdn.net/u010635353/article/details/51698054

设置颜色:

  1. 利用系统自带的颜色类 
    tx.setTextColor(android.graphics.Color.RED);

  2. 利用数字设置 
    tx.setTextColor(0xffff00f);

  3. 利用xml中已经定义好的颜色代码 
    tx.setTextColor(getResources().getColor(R.color.red));

  4. 利用16进制 字符串 
    tx.setTextColor(Color.parseColor(“#FFFFFF”));

你可能感兴趣的:(android基础)