我正在使用Android的新RecyclerView,但只要我打电话给其中一个"通知"我就无法刷新自定义适配器。方法
我尝试过调用notifyDataSetChanged,notifyItemRangeInserted和notifyItemInserted,但似乎都没有。
这是我的自定义适配器的代码。我基本上试图刷新字符串列表:
package com.mycompany.myapp.adapters;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import android.widget.TextView;
import com.mycompany.myapp.R;
import java.util.List;
public class FeedAdapter extends RecyclerView.Adapter<FeedAdapter.ViewHolder> {
private List<String> mDataset;
public FeedAdapter(List<String> dataset) {
super();
mDataset = dataset;
}
@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int i) {
LinearLayout v = (LinearLayout) LayoutInflater.from(parent.getContext())
.inflate(R.layout.list_item_feed, parent, false);
v.setLayoutParams(new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.WRAP_CONTENT));
return new ViewHolder(v);
}
@Override
public void onBindViewHolder(ViewHolder holder, int position) {
holder.setText(mDataset.get(position));
}
@Override
public int getItemCount() {
return mDataset.size();
}
public void setDataset(List<Status> dataset) {
mDataset = dataset;
// This isn't working
notifyItemRangeInserted(0, mDataset.size());
}
public static class ViewHolder extends RecyclerView.ViewHolder {
private TextView mFeedText;
public ViewHolder(View v) {
super(v);
mFeedText = (TextView) v.findViewById(R.id.feed_text);
}
private void setText(String text) {
mFeedText.setText(text);
}
}
}
其他人有这个问题吗?
谢谢!
答案 0 :(得分:26)
我的问题是我没有在主线程上通知更改,因此立即无法看到更改。这是here指出的同一问题。
答案 1 :(得分:12)
我尝试使用 notifyDataSetChanged()方法更新RecycleView以响应 com.google.common.eventbus.Subscribe 。
就像@wmora提到的那样,问题是没有在主UI线程中调用notify方法。
我通过AndroidAnnotations&#39;解决了这个问题。 @UiThread
@UiThread
protected void dataSetChanged() {
notifyDataSetChanged();
}
相当于:
final Adapter adapter = this;
new Handler(Looper.getMainLooper()).post(new Runnable() {
@Override
public void run() {
adapter.notifyDataSetChanged();
}
});
注意:只需将新的Handler分隔为类私有字段