【发布时间】:2015-09-08 16:54:06
【问题描述】:
我正在尝试按照该链接中提供的示例项目在我的项目中实施TwoWayView。我已经实现了一切,我的代码没有任何错误,但实际的 List 并没有膨胀。经过调试,我发现适配器设置正确,getItemCount 方法也返回正数,但其他两个被覆盖的方法onCreateViewHolder 和onBindViewHolder 没有被调用。我不知道为什么它不起作用。请参阅下面的部分代码,不胜感激。谢谢。
MyAdapter.java 类
public class MyAdapter extends RecyclerView.Adapter < MyViewHolder > {
private MySimpleCursorAdapter mCursor;
//some other private fields here
public MyAdapter(Context context, Cursor c, int resourceId, ViewType viewType, String containerId) {
mCursor = new MySimpleCursorAdapter(a1,a2,a3,a4,a5,a6); //Passed necessary arguments
....
}
@Override
public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
Log.w("onCreateViewHolder", "--------->executed"); //Line not executed
final View view = mCursor.newView(mContext, mCursor.getCursor(), parent);
return new MyViewHolder(view);
}
@Override
public void onBindViewHolder(MyViewHolder holder, int position) {
Log.w("onBindViewHolder", "--------->executed"); //Line not executed
mCursor.bindView(holder.itemView, mContext, mCursor.getCursor());
}
@Override
public int getItemCount() {
Log.w("count", Integer.toString(mCursor.getCount())); //This is executed
return mCursor.getCount();
}
private class MySimpleCursorAdapter extends SimpleCursorAdapter {
public MySimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to, int flags) {
super(context, layout, c, from, to, flags);
}
@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {
View view = mLayoutInflater.inflate(mLayoutToInflate, null);
....
return view;
}
@Override
public void bindView(final View view, Context context, Cursor cursor) {
//Implemented this method for inflating all subviews inside each item of the list
}
}
}
注意:我已经经历过类似的问题,但那里提供的答案与我的问题无关,因为我的 RecyclerView 不在 ScrollView 内,而且 getItemCount 正在返回正面数。
【问题讨论】:
标签: android simplecursoradapter android-recyclerview android-viewholder