我有一个显示Cardviews的RecyclerView。每个CardView都有五(5)个textViews。根据每张卡的类型,我将文本的颜色更改为红色,蓝色或绿色(默认)。所有这些都发生在我的onBindViewHolder中,因此性能对我的用户体验至关重要。这是我现在在onBindViewHolder中所做的。
inline auto CreateEntity() { return GetContext()->GetEntityManager()->CreateEntity(); }
这是我的setTextColor方法
//set text color per card type
int int_textColor;
String type = arrayListFiltered.get(position).getType().toLowerCase();
String s_rating_type;
if (!FormatFactory.isStringEmpty(type)){
if (type.contains("featured")){
int_textColor = R.color.red;
}else if (type.contains("connector")){
int_textColor = R.color.blue;
}else{
int_textColor = R.color.green;
}
}else{
int_textColor =R.color.green;
}
setTextColor(recyclerViewHolder.tv_rating_type, int_textColor);
setTextColor(recyclerViewHolder.tv_length, int_textColor);
setTextColor(recyclerViewHolder.tv_name, int_textColor);
setTextColor(recyclerViewHolder.tv_location, int_textColor);
setTextColor(recyclerViewHolder.tv_summary, int_textColor);
存在许多改变文本颜色的方法,我无法找到有关提供最佳性能的方法的任何讨论。即使这段代码工作得很好,我也会重写它以获得很小的性能提升。
答案 0 :(得分:1)
我认为你可以覆盖适配器的方法getItemViewType
,并以不同的颜色膨胀不同的布局。让适配器处理颜色变化而不是动态改变颜色。
例如:
public class MyAdapter extends RecyclerView.Adapter<T> {
@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
int rid;
switch (viewType) {
case 0: // for featured type
rid= R.layout.red;
break;
case 1 : // for connector type
rid= R.layout.blue;
break;
default:
rid= R.layout.green;
break;
}
View v= LayoutInflater.from(parent.getContext()).inflate(id, parent, false);
return new ViewHolder(v);
}
@Override
public int getItemViewType(int position) {
return arrayListFiltered.get(position).getType(); // need int type
}
...
}