ListAdapter adapter = new SimpleAdapter(this, menuItems,
R.layout.recentlist,
new String[] { CAT, DATE, TID, AMO, DEB,CUR,BAL,FEES}, new int[] {
R.id.textView1,R.id.textView2, R.id.textView3, R.id.textView4,R.id.textView5,R.id.textView7,R.id.textView6,R.id.textView8});
DEB.setTextColor(Color.RED);
setListAdapter(adapter);
我想为 DEB 或 textView5 设置颜色。但我收到了这个错误。
对于 String 类型,方法 setTextColor(int) 未定义
我也尝试过使用
R.id.textView5.setTextColor(Color.RED)
但是这个错误来了
无法在原始类型 int 上调用 setTextColor(int)
请帮助我解决这个问题。