嘿傢伙我在一個recyclerview中實現了兩張卡片,並且創建了兩個視圖持有者,但沒有得到適配器的代碼幫助我們。如何使用一個RecyclerView適配器使用多個佈局?
public class ViewHolder1 extends RecyclerView.ViewHolder {
private TextView Chatin;
public ViewHolder1(View v) {
super(v);
Chatin = (TextView) v.findViewById(R.id.Chatin);
}
public TextView getChatin() {
return Chatin;
}
public void setChatin(TextView chatin) {
this.Chatin = chatin;
}
}
其他查看持有人是相同的,因爲它是。
請參考網址http://stackoverflow.com/questions/25914003/recyclerview-and-handling-different-type-of-row-inflation可能會有所幫助。 –