1、
IDE中已经存在的预制颜色的值,可以通过 类Color 来获得,例如:
Color.RED
2、
经过查看源代码,发现 Color.RED ==> "0xFFFF0000;" 于是 发现 在代码中 设置颜色时 和 xml文件中设置颜色有区别...
2.1、
xml中设置 背景颜色属性:(红色)
1 <TextView 2 ... ... 3 android:background="#FF0000" 4 ... ... />
2.2、
代码中设置TextView背景颜色属性:(红色)
“
TextView tv = (TextView) convertView.findViewById(R.id.textView1);
tv.setBackgroundColor(0xFFFFFF00);
”
V
时间: 2024-11-05 12:29:55