刚解决完ListView中的CheckBox选项位置错乱的问题,又出现了ListView中设置的字体颜色位置错乱的问题
先贴修改之前的代码(Adapter中的getView()方法):
@Override
public View getView(int position, View convertView, ViewGroup parent) {
MultiSelLvOneViewHolder holder;
if (convertView == null) {
// 获得ViewHolder对象
holder = new MultiSelLvOneViewHolder();
// 导入布局并赋值
convertView = mInflater.inflate(
R.layout.acat_listitem_multi_select_level_one, null);
holder.tvInfo = (TextView) convertView.findViewById(R.id.tvInfo);
holder.tvId = (TextView) convertView.findViewById(R.id.tvId);
holder.ivRightArrow = (ImageView) convertView.findViewById(R.id.ivRightArrow);
// 设置标签
convertView.setTag(holder);
} else {
// 取出ViewHolder
holder = (MultiSelLvOneViewHolder) convertView.getTag();
}
// 设置列表的显示信息
Resources resource = (Resources) context.getResources();
holder.tvInfo.setText(list.get(position)
.get(CommonConstants.MULTI_SELECT_LIST_KEY_TITLE).toString());
String id = list.get(position).get(CommonConstants.MULTI_SELECT_LIST_KEY_INFO)
.toString();
holder.tvId.setText(id);
// 判断职业是否为总类别,总类别时隐藏右箭头,字体颜色变为橙色
if (JobTypeUtils.isTotalJobType(id)) {
holder.ivRightArrow.setVisibility(View.GONE);
holder.tvInfo.setTextColor(resource.getColorStateList(R.color.deep_yellow));
} else {
holder.ivRightArrow.setVisibility(View.VISIBLE);
holder.tvId.setTextColor(resource.getColorStateList(R.color.black));
}
return convertView;
}
加粗部分为设置字体的颜色。。可是为神马不好使呢
参考了各种资料,何种修改可惜都没用。。
最后参考了boylinux的文章,地址:http://blog.csdn.net/boylinux/article/details/8860443
添加一个SparseArray
public class AcatMultiSelectLevelOneAdapter extends BaseAdapter {
/* 稀疏数组:用于缓存已显示过的View */
private SparseArray viewArray = null;
/* 填充数据列表 */
private List
但再次滑动显示时就可以拿到同一个的View实例,最最重要的是....显示的字体颜色不再错乱了!!!再次感谢boylinux~~
另外,关于SparseArray
原创帖子:http://liuzhichao.com/p/832.html
修改数据方法:
public void put(int key, E value)
public void setValueAt(int index, E value)
public E get(int key)
public E get(int key, E valueIfKeyNotFound)
其中get(int key)也只是调用了 get(int key,E valueIfKeyNotFound),最后一个从传参的变量名就能看出,传入的是找不到的时候返回的值.get(int key)当找不到的时候,默认返回null。
其他方法就参考原帖吧。。