RecyclerView适配器连接错误:未连接适配器

问题描述 投票:1回答:2

我想在一个片段中使用RecyclerView,但是我无法连接适配器。当我运行它时,它失败并且出现此错误

E / RecyclerView:未连接适配器;跳过布局

片段

import android.content.Context;
import android.net.Uri;
import android.os.Bundle;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import java.util.ArrayList;

public class Frag1 extends Fragment {
    private RecyclerView rv;
    private CardAdapter adapter;

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

      View view =inflater.inflate(R.layout.fragment_frag1, container,false);
        rv= (RecyclerView)view.findViewById(R.id.rv);
        rv.setHasFixedSize(true);
        rv.setLayoutManager(new LinearLayoutManager(this.getActivity()));

        ArrayList<String> words = new ArrayList<>() ;
        words.add("x");
        words.add("x");
        words.add("x");
        adapter= new CardAdapter(getActivity(),words);
        rv.setAdapter(adapter);

        return inflater.inflate(R.layout.fragment_frag1, container, false);
    }}

java android android-recyclerview android-cardview
2个回答
0
投票

如您现在所拥有的,您正在重新扩大布局,并返回尚未为RecyclerView设置适配器的布局。只需返回已经充气并用于设置RecyclerView的那个即可:

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

    View view =inflater.inflate(R.layout.fragment_frag1, container,false);
    rv= (RecyclerView)view.findViewById(R.id.rv);
    rv.setHasFixedSize(true);
    rv.setLayoutManager(new LinearLayoutManager(this.getActivity()));

    ArrayList<String> words = new ArrayList<>() ;
    words.add("x");
    words.add("x");
    words.add("x");
    adapter= new CardAdapter(getActivity(),words);
    rv.setAdapter(adapter);

    // Return the view that you already inflated:
    return view;
}

0
投票
您应该返回view,为布局充气,并获得recyclerview,您不应充气两次。只需返回第一个充气视图
© www.soinside.com 2019 - 2024. All rights reserved.