调用notifydatasetchange时textview颜色没有改变?

时间:2011-10-25 14:16:07

标签: android

我只是想在notifydatasetchanged上改变textview的颜色,但它没有改变。

我需要在某个时间间隔调用服务器,并且需要相应地更新列表.txtview颜色仅反映第一次。在适配器上调用notifyDataSetChanged()后它不会改变任何东西。

1 个答案:

答案 0 :(得分:3)

R.color.white

是一种资源,它不会给出颜色。

因此您可能需要获得颜色。

int col = context.getResources().getColor(R.color.white);
mvh.txtview.setTextColor(col);

你需要知道背景。