问题描述
- 请大神速来解决,使用Recyclerview时报这个错误
-
/RecyclerView: No adapter attached; skipping layout
刚用Recyclerview,很多东西都不懂!
下面为代码片段:
解决方案
没有适配器,,,,,
解决方案二:
你重新写一遍,该有的都有了,米之错误
解决方案三:
void dispatchLayout() {
if (mAdapter == null) {
Log.e(TAG, "No adapter attached; skipping layout");
return;
}
if (mLayout == null) {
Log.e(TAG, "No layout manager attached; skipping layout");
return;
}
.....
}
adapter为空时报这个错误。
时间: 2025-01-19 12:16:23