recyclerview未连接适配器;跳过布局


241

刚刚RecyclerView在我的代码中实现,替换为ListView

一切正常。显示数据。

但是正在记录错误消息:

15:25:53.476 E/RecyclerView: No adapter attached; skipping layout

15:25:53.655 E/RecyclerView: No adapter attached; skipping layout

对于以下代码:

ArtistArrayAdapter adapter = new ArtistArrayAdapter(this, artists);
recyclerView = (RecyclerView) findViewById(R.id.cardList);
recyclerView.setHasFixedSize(true);
recyclerView.setAdapter(adapter);
recyclerView.setLayoutManager(new LinearLayoutManager(this));

如您所见,我已连接的适配器RecyclerView。那么,为什么我会不断收到此错误?

我已经阅读了与同一问题相关的其他问题,但它们均无济于事。


艺术家是空的吗?切换setAdapter和setLayoutManager会发生什么?
Blackbelt

您必须使用RecyclerView.Adapter
Octopus38

12
如果您不立即将recyclerview附加到窗口,则可能会看到它。
yigit

1
@yigit我正在等待改造以下载数据,并在完成给定代码后运行!
equitharn 2015年

3
这个错误有多严重?可以忽略吗?无论如何,我使用setAdapter(null)来避免该错误。
priyankvex

Answers:


243

您是否可以确保从“主”线程(例如,在onCreate()方法内部)调用这些语句。一旦我从“延迟”方法调用相同的语句。在我的情况下ResultCallback,我收到相同的消息。

在my中Fragment,从ResultCallback方法内部调用下面的代码会产生相同的消息。将代码移至onConnected()我的应用程序中的方法后,消息消失了……

LinearLayoutManager llm = new LinearLayoutManager(this);
llm.setOrientation(LinearLayoutManager.VERTICAL);
list.setLayoutManager(llm);
list.setAdapter( adapter );

9
但是我需要先下载数据然后再显示!
equitharn 2015年

93
只需先设置一个空适配器,一旦有数据就对其进行更新(这对我来说是有效的)。
彼得

3
这就是yigit的建议!
equitharn 2015年

13
@equitharn您应该先设置一个空适配器,然后下载数据,调用mAdapter.notifyDataSetChanged(),这对我有用。
DomonLee

2
此解决方案无济于事。实际上,该线程中没有任何解决方案对我有帮助。有人可以在这里
普拉克(Pulak)

41

在修复代码中的两件事之前,我得到了相同的两条错误消息:

(1)默认情况下,当您在中实现方法时,RecyclerView.Adapter它会生成:

@Override
public int getItemCount() {
    return 0;
}

确保您更新了代码,使其显示为:

@Override
public int getItemCount() {
    return artists.size();
}

显然,如果您的项目中有零个项目,那么屏幕上将显示零个项目。

(2)我没有按照最佳答案所示进行操作:CardView layout_width =“ match_parent”与父级RecyclerView宽度不匹配

//correct
LayoutInflater.from(parent.getContext())
            .inflate(R.layout.card_listitem, parent, false);

//incorrect (what I had)
LayoutInflater.from(parent.getContext())
        .inflate(R.layout.card_listitem,null);

(3)编辑:奖励:还请确保您这样设置RecyclerView

<android.support.v7.widget.RecyclerView
    android:id="@+id/RecyclerView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    />

不像这样:

<view
    android:id="@+id/RecyclerView"
    class="android.support.v7.widget.RecyclerView"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

我看过一些使用后一种方法的教程。虽然可以正常工作,但我认为它也会产生此错误。


1
我的getItemCount()看起来像这样public int getItemCount() { return artists == null ? 0 : artists.size(); },并且LayoutInflaterView itemView = LayoutInflater. from(parent.getContext()).inflate(R.layout.fragment_listitem, parent, false);
equitharn

这对我有用:@Override public int getItemCount(){return artist.size(); }
AstonCheah '17

4
天啊。回到SO的那一刻,看到您已经赞成的答案,并意识到自己在做同样的愚蠢的事情。再次感谢@Micro。
androidevil

20

我和你有同样的情况,显示还可以,但是错误出现在位置。那是我的解决方案:(1)在CREATE()上初始化RecyclerView和绑定适配器

RecyclerView mRecycler = (RecyclerView) this.findViewById(R.id.yourid);
mRecycler.setAdapter(adapter);

(2)获取数据时调用notifyDataStateChanged

adapter.notifyDataStateChanged();

在recyclerView的源代码中,还有其他线程可以检查数据状态。

public RecyclerView(Context context, @Nullable AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    this.mObserver = new RecyclerView.RecyclerViewDataObserver(null);
    this.mRecycler = new RecyclerView.Recycler();
    this.mUpdateChildViewsRunnable = new Runnable() {
        public void run() {
            if(RecyclerView.this.mFirstLayoutComplete) {
                if(RecyclerView.this.mDataSetHasChangedAfterLayout) {
                    TraceCompat.beginSection("RV FullInvalidate");
                    RecyclerView.this.dispatchLayout();
                    TraceCompat.endSection();
                } else if(RecyclerView.this.mAdapterHelper.hasPendingUpdates()) {
                    TraceCompat.beginSection("RV PartialInvalidate");
                    RecyclerView.this.eatRequestLayout();
                    RecyclerView.this.mAdapterHelper.preProcess();
                    if(!RecyclerView.this.mLayoutRequestEaten) {
                        RecyclerView.this.rebindUpdatedViewHolders();
                    }

                    RecyclerView.this.resumeRequestLayout(true);
                    TraceCompat.endSection();
                }

            }
        }
    };

在dispatchLayout()中,我们可以发现其中存在错误:

void dispatchLayout() {
    if(this.mAdapter == null) {
        Log.e("RecyclerView", "No adapter attached; skipping layout");
    } else if(this.mLayout == null) {
        Log.e("RecyclerView", "No layout manager attached; skipping layout");
    } else {

11

我有这个问题,一些时间问题是将cycleView放在ScrollView对象中

检查实施后,原因如下。如果将RecyclerView放入ScrollView,则在测量步骤中未指定其高度(因为ScrollView允许任何高度),因此,其高度等于最小高度(根据实现方式),该高度显然为零。

您可以通过以下几种方法解决此问题:

  1. 为RecyclerView设置一定的高度
  2. 将ScrollView.fillViewport设置为true
  3. 或将RecyclerView保留在ScrollView之外。我认为,到目前为止,这是最佳选择。如果RecyclerView的高度不受限制-将其放入ScrollView时就是这种情况-那么所有Adapter的视图都在垂直方向上具有足够的位置并可以一次全部创建。再也没有视图回收,这有点违反了RecyclerView的用途。

(可以遵循 android.support.v4.widget.NestedScrollView


将ScrollView.fillViewport设置为true可以解决我的问题,这很感谢
Eman

10

1)创建不执行任何操作的ViewHolder :)

// SampleHolder.java
public class SampleHolder extends RecyclerView.ViewHolder {
    public SampleHolder(View itemView) {
        super(itemView);
    }
}

2)再次创建不执行任何操作的RecyclerView :)

// SampleRecycler.java
public class SampleRecycler extends RecyclerView.Adapter<SampleHolder> {
    @Override
    public SampleHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        return null;
    }

    @Override
    public void onBindViewHolder(SampleHolder holder, int position) {

    }

    @Override
    public int getItemCount() {
        return 0;
    }
}

3)现在,当您尚未准备好真正的回收站时,请使用如下所示的示例。

RecyclerView myRecycler = (RecyclerView) findViewById(R.id.recycler_id);
myRecycler.setLayoutManager(new LinearLayoutManager(this));
myRecycler.setAdapter(new SampleRecycler());

虽然这不是最佳解决方案,但它可以工作!希望这会有所帮助。


嗨,请问我有同样的错误,我不知道应该在哪里检查回收站是否准备好传递空的适配器)以及在哪里可以检查回收站是否准备好(将适配器传递数据)
詹姆斯

太好了,这是拖放样式的要点gist.github.com/anonymous/bcf027945f08f40601090c55d6048e21
nmu

9

当您在创建阶段未设置适配器时,会发生这种情况:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity);
    mRecyclerView.setLayoutManager(new LinearLayoutManager(this));
    ....
}

public void onResume() {
    super.onResume();
    mRecyclerView.setAdapter(mAdapter);
    ....
}

只需将适配器设置为带有空数据的onCreate,并在进行数据调用时:

mAdapter.notifyDataSetChanged();

确保您在onCreate方法中的customadapter构造函数中设置数据
Mohit Singh


3

确保通过以下方式设置RecyclerView的布局管理器:

mRecyclerView.setLayoutManager(new LinearLayoutManager(context));

除了LinearLayoutManager,您也可以使用其他布局管理器。


3

如果您正在使用翻新之类的数据来等待像我这样的数据,则我有同样的错误我已解决了此问题

放在Oncreate之前

private ArtistArrayAdapter adapter;
private RecyclerView recyclerView;

将它们放在您的Oncreate中

 recyclerView = (RecyclerView) findViewById(R.id.cardList);
 recyclerView.setHasFixedSize(true);
 recyclerView.setLayoutManager(new LinearLayoutManager(this));
 adapter = new ArtistArrayAdapter( artists , R.layout.list_item ,getApplicationContext());
 recyclerView.setAdapter(adapter);

收到数据后

adapter = new ArtistArrayAdapter( artists , R.layout.list_item ,getApplicationContext());
recyclerView.setAdapter(adapter);

现在进入ArtistArrayAdapter类,然后执行此操作:如果数组为空或为null,则它将使GetItemCount返回0;否则,将使其变为Artists数组的大小。

@Override
public int getItemCount() {

    int a ;

    if(artists != null && !artists.isEmpty()) {

        a = artists.size();
    }
    else {

        a = 0;

     }

   return a;
}

3

这些行必须位于OnCreate

mmAdapter = new Adapter(msgList);
mrecyclerView.setAdapter(mmAdapter);

2

发生这种情况是因为实际的充气布局与您在找到recyclerView时所引用的布局不同。创建片段时,默认情况下,onCreateView方法显示如下: return inflater.inflate(R.layout.<related layout>,container.false);

取而代之的是,分别创建视图并使用该视图引用recyclerView View view= inflater.inflate(R.layout.<related layout>,container.false); recyclerview=view.findViewById(R.id.<recyclerView ID>); return view;


2

首先初始化适配器

public void initializeComments(){
    comments = new ArrayList<>();

    comments_myRecyclerView = (RecyclerView) findViewById(R.id.comments_recycler);
    comments_mLayoutManager = new LinearLayoutManager(myContext);
    comments_myRecyclerView.setLayoutManager(comments_mLayoutManager);

    updateComments();
    getCommentsData();

}

public void updateComments(){

    comments_mAdapter = new CommentsAdapter(comments, myContext);
    comments_myRecyclerView.setAdapter(comments_mAdapter);
}

只要数据集发生更改,只需调用updateComments方法。


2

对于RecyclerView片段中使用并从其他视图中对其进行充气的用户:在对整个片段视图进行充气时,请确保您绑定了RecyclerView到其根视图。

我正在为适配器正确连接并完成所有操作,但从未绑定。此答案@Prateek阿加瓦尔拥有这一切对我来说,但这里是进行更多的讨论。

科特林

    override fun onCreateView(inflater: LayoutInflater?, container: ViewGroup?, savedInstanceState: Bundle?): View? {

    val rootView =  inflater?.inflate(R.layout.fragment_layout, container, false)
    recyclerView = rootView?.findViewById(R.id.recycler_view_id)
    // rest of my stuff
    recyclerView?.setHasFixedSize(true)
    recyclerView?.layoutManager = viewManager
    recyclerView?.adapter = viewAdapter
    // return the root view
    return rootView
}

爪哇

  @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

    View rootView= inflater.inflate(R.layout.fragment_layout,container,false);
    recyclerview= rootView.findViewById(R.id.recycler_view_id);
    return rootView;
}

1
ArtistArrayAdapter adapter = new ArtistArrayAdapter(this, artists);
recyclerView = (RecyclerView) findViewById(R.id.cardList);
recyclerView.setHasFixedSize(true);
recyclerView.setLayoutManager(new LinearLayoutManager(this));
recyclerView.setAdapter(adapter);

只需将上面的代码替换为此,它应该可以工作。您做错了什么是在调用布局管理器之前调用了setAdapter(adapter)。


1

这确实是一个简单的错误,无需执行任何代码。 发生此错误是由于活动使用了错误的布局文件。通过IDE,我自动创建了布局的布局v21,该布局成为活动的默认布局。 我在旧布局文件和新布局文件中所做的所有代码都只有很少的xml代码,这导致了该错误。

解决方案:复制所有旧版式代码并粘贴到版式v 21中


1

就我而言,我是onLocationChanged()在模拟器的回调和调试中设置适配器。由于未检测到位置更改,因此从未触发。当我在模拟器的扩展控件中手动设置它们时,它按预期工作。


1

我已经解决了这个错误。您只需要添加布局管理器并添加空适配器即可。

像这样的代码:

myRecyclerView.setLayoutManager(...//your layout manager);
        myRecyclerView.setAdapter(new RecyclerView.Adapter() {
            @Override
            public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
                return null;
            }

            @Override
            public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {

            }

            @Override
            public int getItemCount() {
                return 0;
            }
        });
//other code's 
// and for change you can use if(mrecyclerview.getadapter != speacialadapter){
//replice your adapter
//}

1
我是为初学者做的
mehdi janbarari

1

只需将以下内容添加到 RecyclerView

app:layoutManager="android.support.v7.widget.LinearLayoutManager"

例:

   <android.support.v7.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/recyclerView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scrollbars="vertical"
        app:layoutManager="android.support.v7.widget.LinearLayoutManager"
        app:layout_constraintBottom_toTopOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

    </android.support.v7.widget.RecyclerView>

1

我遇到了此错误,我尝试修复了一段时间,直到找到解决方案。

我创建了一个私有方法buildRecyclerView,我两次调用它,首先是在onCreateView上,然后是在回调之后(我从API中获取数据)。这是我的Fragment中的buildRecyclerView方法:

private void buildRecyclerView(View v) {
        mRecyclerView = v.findViewById(R.id.recycler_view_loan);
        mLayoutManager = new LinearLayoutManager(getActivity());
        ((LinearLayoutManager) mLayoutManager).setOrientation(LinearLayoutManager.VERTICAL);
        mRecyclerView.setLayoutManager(mLayoutManager);
        mAdapter = new LoanAdapter(mExampleList);
        mRecyclerView.setLayoutManager(mLayoutManager);
        mRecyclerView.setAdapter(mAdapter);
}

此外,我还必须在适配器中修改方法get-Item-Count,因为在on-Create-View上,该列表为null,并通过错误显示。因此,我的get-Item-Count是以下内容:

@Override
    public int getItemCount() {
        try {
            return mLoanList.size();
        } catch (Exception ex){return 0;}

    }

0

在我的情况下,这是一个被遗忘的组件,它位于ViewHolder类中,但未位于布局文件中


0

我遇到了同样的问题,并且意识到我是在从源中检索数据之后设置了LayoutManage r和适配器,而不是在onCreate方法中设置了两者。

salesAdapter = new SalesAdapter(this,ordersList);
        salesView.setLayoutManager(new LinearLayoutManager(getApplicationContext()));
        salesView.setAdapter(salesAdapter);

然后通知适配器数据更改

               //get the Orders
                Orders orders;
                JSONArray ordersArray = jObj.getJSONArray("orders");
                    for (int i = 0; i < ordersArray.length() ; i++) {
                        JSONObject orderItem = ordersArray.getJSONObject(i);
                        //populate the Order model

                        orders = new Orders(
                                orderItem.getString("order_id"),
                                orderItem.getString("customer"),
                                orderItem.getString("date_added"),
                                orderItem.getString("total"));
                        ordersList.add(i,orders);
                        salesAdapter.notifyDataSetChanged();
                    }

0

此问题是因为您没有LayoutManager为您添加任何内容RecyclerView

另一个原因是因为您正在NonUIThread中调用此代码。确保在UIThread中调用此调用。

该解决方案是唯一的,你必须添加LayoutManagerRecyclerView您之前setAdapter在UI线程。

recyclerView.setLayoutManager(new LinearLayoutManager(getContext()));

如果需要延迟设置LayoutManager,则应从回调方法执行此操作:recyclerView.post(()-> {recyclerView.setLayoutManager(mGridLayoutManager); recyclerView.addItemDecoration(new ItemOffsetDecoration(itemGap));});
ievgen '18

0

我的问题是我的回收站视图看起来像这样

        <android.support.v7.widget.RecyclerView
        android:id="@+id/chatview"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent">
    </android.support.v7.widget.RecyclerView>

什么时候应该看起来像这样

       <android.support.v7.widget.RecyclerView
        android:id="@+id/chatview"
        android:layout_width="395dp"
        android:layout_height="525dp"
        android:layout_marginTop="52dp"
        app:layout_constraintTop_toTopOf="parent"
        tools:layout_editor_absoluteX="8dp"></android.support.v7.widget.RecyclerView>
</android.support.constraint.ConstraintLayout>

0

RecyclerView例如MyRecyclerViewAdapter,在您的适配器类中,使用以下参数构造一个构造函数。

MyRecyclerViewAdapter(Context context, List<String> data) {
    this.mInflater = LayoutInflater.from(context); // <-- This is the line most people include me miss
    this.mData = data;
}

mData是您将传递给适配器的数据。如果没有要传递的数据,则为可选。 mInflaterLayoutInflater已创建并OnCreateViewHolder在适配器功能中使用的对象。

之后,将适配器连接到MainActivity或您想要在主/ UI线程上正确放置的任何位置,例如

MyRecyclerViewAdapter recyclerAdapter;
OurDataStuff mData;

    ....
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        //Like this:

        RecyclerView recyclerView = findViewById(R.id.recyclerView);
        recyclerView.setLayoutManager(new LinearLayoutManager(this));
        recyclerAdapter = new RecyclerAdapter(this, mData); //this, is the context. mData is the data you want to pass if you have any
        recyclerView.setAdapter(recyclerAdapter);
    }
   ....

0

通过在底部设置初始化的空列表和适配器并在获取结果时调用notifyDataSetChanged来解决。

    LinearLayoutManager linearLayoutManager = new LinearLayoutManager(getContext());
    recyclerviewItems.setLayoutManager(linearLayoutManager);
    someAdapter = new SomeAdapter(getContext(),feedList);
    recyclerviewItems.setAdapter(someAdapter);

0

我因这个问题失去了16分钟的生命,因此我只承认自己犯了一个令人难以置信的令人尴尬的错误-我正在使用Butterknife,并将该视图绑定到onCreateView中。

花了很长时间才弄清楚为什么我没有layoutmanager-但是很明显,视图是注入的,因此它们实际上不会为空,因此回收站将永远不会为空..哎呀!

@BindView(R.id.recycler_view)
RecyclerView recyclerView;

    @Override
public View onCreateView(......) {
    View v = ...;
    ButterKnife.bind(this, v);
    setUpRecycler()
 }

public void setUpRecycler(Data data)
   if (recyclerView == null) {
 /*very silly because this will never happen*/
       LinearLayoutManager linearLayoutManager = new LinearLayoutManager(getActivity());
       //more setup
       //...
    }
    recyclerView.setAdapter(new XAdapter(data));
}

如果遇到这样的问题,请跟踪您的视图并使用类似的方法 uiautomatorviewer


0

答案不多,但是即使代码正确,我也遇到了同样的问题。有时,这只是最简单的方法。在这种情况下,<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />Manifest中可能还会丢失OP的错误,这会重现相同的错误。


0

就我而言,这是因为我在LinearLayout中嵌入了RecyclerView。

我以前有一个仅包含一个根RecyclerView的布局文件,如下所示

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.RecyclerView
    android:id="@+id/list"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:listitem="@layout/fragment_products"

    android:name="Products.ProductsFragment"
    app:layoutManager="LinearLayoutManager"
    tools:context=".Products.ProductsFragment"

    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"/>

我相信问题出在3条线之内。无论如何,我认为这是一个简单的问题,明天将无法解决。以为我应该写我发现之前忘记了该线程。


0

自从我遇到了该错误后,我又添加了另一个答案。我试图初始化一个,PreferenceFragmentCompat但我忘了onCreatePreferences像这样膨胀首选项XML :

class SettingsFragment : PreferenceFragmentCompat() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)

        val inflater = LayoutInflater.from(context)
        inflater.inflate(R.layout.fragment_settings, null)
    }

    override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) {
        // Missing this line here:
        //   setPreferencesFromResource(R.xml.settings, rootKey)
    }
}

这个错误是一个谜,直到我意识到PreferenceFragmentCompat必须在RecyclerView内部使用。


0

//当您在创建阶段未设置适配器时会发生这种情况:当api响应达到其工作状态时调用notifyDataSetChanged()

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity);


        magazineAdapter = new MagazineAdapter(getContext(), null, this );
        newClipRecyclerView.setAdapter(magazineAdapter);
        magazineAdapter.notifyDataSetChanged();

       APICall();
}

public void APICall() {
    if(Response.isSuccessfull()){
    mRecyclerView.setAdapter(mAdapter);
   }
}
Just move setting the adapter into onCreate with an empty data and when you have the data call:

mAdapter.notifyDataSetChanged();
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.