我已经查看了以前的问题,并且尝试了所有提供的解决方案,但似乎没有任何效果,我有一个可扩展的列表,我想将子元素的文本颜色设置为白色(不透明,纯白色) ,这是我的代码:
public View getChildView(int groupPosition, int childPosition,
boolean isLastChild, View convertView, ViewGroup parent) {
TextView textView = getGenericView();
textView.setText(getChild(groupPosition, childPosition).toString());
textView.setTextColor(color.white);
return textView;
}
我也试过:
textView.setTextColor(getResources().getColor(R.color.white));
但是当我运行应用程序时,文本永远不会显示(我不确定它是否使它变得透明)。
我应该怎么办?