我在row.xml中有一个imageview,我在xml布局中为它设置了一张图片。但是当我在适配器中使用它时(onbindviewholder方法) 没有显示任何图像。但是当我在onbindviewholder中设置图像资源时,它会工作并显示图像! 第一种方法有什么问题???
答案 0 :(得分:1)
使用
holder.Image.setImageResource();
或者您可以使用Glide或Picasso库来加载图像。
并返回列表的大小。
@Override
public int getItemCount() {
return contacts.size();
}
答案 1 :(得分:0)
public class Adapter extends RecyclerView.Adapter<Adapter.vh> {
private List<Contacts> contacts;
public Adapter(List<Contacts> contacts) {
this.contacts = contacts;
}
public class vh extends RecyclerView.ViewHolder {
protected TextView first_name;
protected TextView last_name;
protected ImageView Image;
public vh(View v) {
super(v);
first_name = (TextView) v.findViewById(R.id.first);
last_name = (TextView) v.findViewById(R.id.last);
Image = (ImageView) v.findViewById(R.id.imageView);
}
}
@Override
public Adapter.vh onCreateViewHolder(ViewGroup parent, int viewType) {
View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.row, parent, false);
return new vh(v);
}
@Override
public void onBindViewHolder(vh holder, int position) {
Contacts example = contacts.get(position);
holder.first_name.setText(example.name);
holder.last_name.setText(example.last_name);
if (position == 3) {
holder.first_name.setTextColor(Color.BLUE);
}
}
@Override
public int getItemCount() {
}
}