item数量超过6条就会出现item重复,乱序
代码如下
fragment布局
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
tools:context="invinciblejoe.com.lightingbuy.main.LightingFragment">
<android.support.v7.widget.RecyclerView
android:id="@+id/commodity_list"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
recyclerview item布局
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/invinciblejoe.com.lightingbuy"
android:layout_width="match_parent"
android:layout_height="150dp"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
app:cardBackgroundColor="@color/orange"
app:cardCornerRadius="20dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/pic"
android:layout_width="match_parent"
android:layout_height="120dp"
android:gravity="center"
android:textSize="50sp"
/>
<TextView
android:clickable="true"
android:id="@+id/name"
android:layout_width="match_parent"
android:layout_height="60dp"
android:background="@color/orange"
android:textColor="@android:color/white" />
</LinearLayout>
</android.support.v7.widget.CardView>
recycerview adapter
public class LightingRVAdapter extends RecyclerView.Adapter {
private List<Commodity> mlist;
private Context mContext;
private LightingViewHolder viewHolder;
public LightingRVAdapter(Context mContext, List<Commodity> mlist) {
this.mContext = mContext;
this.mlist = mlist;
}
@Override
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.cardview_lighting, parent, false);
viewHolder = new LightingViewHolder(v);
return viewHolder;
}
@Override
public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
Commodity c = mlist.get(position);
viewHolder.mImageView.setText(c.getName());
viewHolder.mTextView.setText(String.valueOf(c.getPrice_discont()));
}
@Override
public int getItemCount() {
return mlist == null ? 0 : mlist.size();
}
private class LightingViewHolder extends RecyclerView.ViewHolder
implements View.OnClickListener
{
public TextView mTextView;
public TextView mImageView;
public LightingViewHolder(View v )
{
super(v);
mTextView = (TextView) v.findViewById(R.id.name);
mImageView = (TextView) v.findViewById(R.id.pic);
mImageView.setOnClickListener(this);
}
@Override
public void onClick(View view) {
switch (view.getId()) {
case R.id.pic :
mTextView.setText("OnChlic");
break;
}
}
}
}
怪我咯2017-04-17 17:24:11
不錯亂才是怪事,你的view holder用法不對啊..
onCreateViewHolder那裡直接創建新的實例返回,這個方法會在需要新的item的時候被調用。
你這樣寫法,整個adapter中使用的是同一個holder,因為顯示有快取所以不會第二個item就錯亂。
OnBind那裡會提供你建立的holder實例,在那裡操作你的資料。
同時,以上方法的回傳類型都應該是你的自訂holder。
PHP中文网2017-04-17 17:24:11
重複亂序是什麼意思,是第position 7的位置,顯示的資料是之前顯示過的?
建議你在onBindViewHolder()方法中debug下,看看相關變數的值。
看程式碼好像沒什麼問題。是否有其他的程式碼,例如你說的「插入」
PHP中文网2017-04-17 17:24:11
這一行是關鍵啊
這是正確的寫法
public class LightingRVAdapter extends RecyclerView.Adapter<LightingRVAdapter.LightingViewHolder>
改正後實作介面是這樣子的
@Override
public LightingViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.cardview_lighting, parent, false);
return new LightingViewHolder(v);
}
@Override
public void onBindViewHolder(final LightingViewHolder holder, int position)
然後直接在onBindViewHolder內操作資料
謝謝 原文海 的指正,謝謝