我正在编写一个检查我们的“网络服务”并返回“托管”或“非托管”状态的应用程序,我在列表视图中保留了正在运行的搜索历史记录(直到用户清除它),这一切正常.
我想做的是,如果状态为“托管”,我希望单个textview项目为绿色,如果状态为“非托管”,我希望单个项目为红色.
//This is the String Array which gets populated later.
ArrayList<String> _searchHistoryList = new ArrayList<String>();
//Here is where I override the getView to try to change the color.
listAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, _searchHistoryList) {
@Override
public View getView(int position, View convertView, ViewGroup parent) {
TextView textView = (TextView) super.getView(position, convertView, parent);
String _currentStatus = appSettings.getString("current_status", "na");
int textColor;
if (_currentStatus.equals("Managed")){
textColor = R.color.green_text;
} else {
textColor = R.color.red_text;
}
textView.setTextColor(getResources().getColor(textColor));
return textView;
}
};
lvSearchHistory.setAdapter(listAdapter);
上面的代码实际上将整个列表视图变成了最后一个搜索项的颜色. (例如,如果最后的搜索结果为“托管”结果-整个项目列表变为绿色,而不仅仅是单个项目).
谁能指出我正确的方向.
解决方法:
在我看来,您问题的根源是此电话:
String _currentStatus = appSettings.getString("current_status", "na");
该调用中没有任何内容指示要检查的列表元素,因此它将始终为列表中的每个视图返回相同的结果.您应该传递position参数,并使用它来获取相关列表条目的状态(如何执行此操作取决于您实际上如何获得列表元素的状态,但这并不难).