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

guykilcj  于 2021-06-30  发布在  Java
关注(0)|答案(30)|浏览(481)

刚刚实施 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 . 那为什么我总是犯这个错误呢?
我读过与同一问题有关的其他问题,但没有一个有用。

nfeuvbwi

nfeuvbwi1#

这是因为实际的膨胀布局与您在查找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;

mzsu5hc0

mzsu5hc02#

检查是否错过了在适配器中调用此方法

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

hrirmatl3#

在你的 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` 将传递给适配器的数据。如果没有要传递的数据,则它是可选的。 `mInflater` 是 `LayoutInflater` 已创建并在中使用的对象 `OnCreateViewHolder` 适配器的功能。
在此之后,您可以将适配器连接到mainactivity中,也可以连接到main/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);
}

....

yvfmudvl

yvfmudvl4#

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());

这不是最好的解决方案,但它的工作!希望这有帮助。

vcudknz3

vcudknz35#

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

mRecyclerView.setLayoutManager(new LinearLayoutManager(context));

而不是 LinearLayoutManager ,也可以使用其他布局管理器。

fslejnso

fslejnso6#

此问题是因为您没有添加任何 LayoutManager 为了你的 RecyclerView .
另一个原因是您在非uithread中调用此代码。确保在uithread中调用此调用。
解决办法是你只需要加一个 LayoutManager 对于 RecyclerView 在你之前 setAdapter 在ui线程中。

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

txu3uszq7#

在修复代码中的两个问题之前,我收到了相同的两条错误消息:
(1) 默认情况下,在 RecyclerView.Adapter 它产生:

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

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

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

显然,如果您的项目中没有项目,那么您将在屏幕上显示零个项目。
(2) 我没有这样做,如顶部的答案所示:cardview layout\u width=“match\u parent”与parent recyclerview width不匹配

//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" />

我看过一些使用后一种方法的教程。当它工作的时候,我认为它也产生了这个错误。

d5vmydt9

d5vmydt98#

我遇到了这个错误,我试着修复了一段时间,直到找到了解决方法。
我创建了一个私有方法buildrecyclerview,并调用了它两次,首先在oncreateview上调用,然后在回调之后调用(在回调中,我从api获取数据)。这是我片段中的方法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方法,因为在create视图上,list为null,并且它通过了一个错误。因此,我的get item计数如下:

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

    }
z6psavjg

z6psavjg9#

我也遇到了同样的问题,并意识到在从源代码检索数据之后,我同时设置了layoutmanager和adapter,而不是在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();
                    }
knpiaxh1

knpiaxh110#

首先初始化适配器

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方法。

5uzkadbs

5uzkadbs11#

我的问题是我的回收者观点是这样的

<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>
gev0vcfq

gev0vcfq12#

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

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

1dkrff0313#

在我的例子中,这是因为我在线性布局中嵌入了一个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"/>

我相信问题出在三条线之间。不管怎样,我认为这是一个简单的问题,我明天就着手解决;我想我应该在忘记这条线索之前把我发现的写下来。

bn31dyow

bn31dyow14#

这些线必须在 OnCreate :

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

wf82jlnq15#

您能确保您是从延迟异步回调之外的“main”线程调用这些语句吗(例如在 onCreate() 方法)。只要我从“延迟”方法调用相同的语句。我的情况是 ResultCallback ,我得到了同样的信息。
在我的 Fragment ,从 ResultCallback 方法生成相同的消息。将代码移到 onConnected() 在我的应用程序中,消息不见了。。。

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

相关问题