Android RecyclerView no mostrar imágenes o texto en el fragmento

Myles Collier:

Estoy tratando de seguir un curso en línea para construir un RecyclerView en un fragmento y luego cargar imágenes y texto en las tarjetas. Estoy consiguiendo un error:

com.example.gena E / RecyclerView: No hay ningún adaptador unido; diseño saltarse

El código siguiente es el fragmento

package com.example.gena;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.fragment.app.Fragment;
import androidx.recyclerview.widget.DefaultItemAnimator;
import androidx.recyclerview.widget.GridLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
import java.util.ArrayList;
import java.util.List;

public class ApprenticeFrag extends Fragment {

    private RecyclerView recyclerView;
    private ApprenticeAdapter adapter;
    private List<ApprenticeData> mApprenticeList;
    private ApprenticeData mApprenticeData;

    public ApprenticeFrag() {
    }

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.apprentice_frag, container, false);

        recyclerView = rootView.findViewById(R.id.recyclerView);

        mApprenticeList = new ArrayList<>();
        mApprenticeData = new ApprenticeData("john doe1", getString(R.string.appr1_descr), R.drawable.appr1);
        mApprenticeList.add(mApprenticeData);
        mApprenticeData = new ApprenticeData("john doe2", getString(R.string.appr2_descr), R.drawable.appr2);
        mApprenticeList.add(mApprenticeData);
        mApprenticeData = new ApprenticeData("john doe3", getString(R.string.appr3_descr), R.drawable.appr3);
        mApprenticeList.add(mApprenticeData);
        mApprenticeData = new ApprenticeData("john doe4", getString(R.string.appr4_descr), R.drawable.appr4);
        mApprenticeList.add(mApprenticeData);
        mApprenticeData = new ApprenticeData("john doe5", getString(R.string.appr5_descr), R.drawable.appr5);
        mApprenticeList.add(mApprenticeData);
        mApprenticeData = new ApprenticeData("john doe6", getString(R.string.appr6_descr), R.drawable.appr6);
        mApprenticeList.add(mApprenticeData);
        mApprenticeData = new ApprenticeData("john doe7", getString(R.string.appr7_descr), R.drawable.appr7);
        mApprenticeList.add(mApprenticeData);
        mApprenticeData = new ApprenticeData("john doe8", getString(R.string.appr8_descr), R.drawable.appr8);
        mApprenticeList.add(mApprenticeData);
        mApprenticeData = new ApprenticeData("john doe9", getString(R.string.appr9_descr), R.drawable.appr9);
        mApprenticeList.add(mApprenticeData);
        mApprenticeData = new ApprenticeData("john doe10", getString(R.string.appr10_descr), R.drawable.appr10);
        mApprenticeList.add(mApprenticeData);
        mApprenticeData = new ApprenticeData("john doe11", getString(R.string.appr11_descr), R.drawable.appr11);
        mApprenticeList.add(mApprenticeData);

        adapter = new ApprenticeAdapter(getActivity(), mApprenticeList);
        RecyclerView.LayoutManager mLayoutManager = new GridLayoutManager(getActivity(), 2);
        recyclerView.setLayoutManager(mLayoutManager);

        recyclerView.setItemAnimator(new DefaultItemAnimator());
        recyclerView.setAdapter(adapter);



        // Inflate the layout for this fragment
        return inflater.inflate(R.layout.apprentice_frag, container, false);
    }
}

También el adaptador que estoy usando es el siguiente:

package com.example.gena;

import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.cardview.widget.CardView;
import androidx.recyclerview.widget.RecyclerView;
import java.util.List;


public class ApprenticeAdapter extends RecyclerView.Adapter<ApprenticeViewHolder> {

    private Context mContext;
    private List<ApprenticeData> mApprenticeList;

    ApprenticeAdapter(Context mContext, List<ApprenticeData> mApprenticeList) {
        this.mContext = mContext;
        this.mApprenticeList = mApprenticeList;
    }


    @NonNull
    @Override
    public ApprenticeViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
        View mView = LayoutInflater.from(parent.getContext()).inflate(R.layout.recyclerview_item_row, parent, false);
        return new ApprenticeViewHolder(mView);
    }

    @Override
    public void onBindViewHolder(final ApprenticeViewHolder holder, int position) {
        holder.mImage.setImageResource(mApprenticeList.get(position).getApprenticePicture());
        holder.mTitle.setText(mApprenticeList.get(position).getApprenticeName());

    }

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

}

class ApprenticeViewHolder extends RecyclerView.ViewHolder {

    CardView mCardView = itemView.findViewById(R.id.cardview);
    ImageView mImage;
    TextView mTitle;

    ApprenticeViewHolder(View itemView) {
        super(itemView);

        mImage = itemView.findViewById(R.id.ivImage);
        mTitle = itemView.findViewById(R.id.tvTitle);
    }
}

Cualquier ayuda sería muy apreciada. Gracias

Nassb:

La cuestión que se enfrentan es a causa de esto en su calss adaptador:

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

Cambio anterior a líneas

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

y se resolverá el problema.

Además, es necesario actualizar la última línea en su onCreateViewmétodo de

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

a

return rootView;

Supongo que te gusta

Origin http://43.154.161.224:23101/article/api/json?id=282469&siteId=1
Recomendado
Clasificación