1
如何在Android中爲textview提供背景顏色?如何給android中的textview背景顏色?
如何在Android中爲textview提供背景顏色?如何給android中的textview背景顏色?
textView.setBackgroundResource(resourceId) //from resource
textView.setBackgroundColor(int color) // e.g. Color.RED
自定義顏色
int color = Color.rgb(int red, int green, int blue);
thnxs的工作UR help.Its – deepthi 2010-02-16 11:00:29