使用WebServices [API]

时间:2019-04-12 10:49:08

标签: android fragment android-tablayout

我正在尝试在TabLayout下的Fragment中填充一个recyclerview。一切似乎都很好,但是实际上所有数据Logs [Log.e();]都可以正常工作,但实际上并没有在recyclerview中填充数据。谁能提出这个问题?

我的片段就像​​:

public class SugarLevelReport extends Fragment
{
private ConstraintLayout view_constraintLayout;
private RecyclerView blood_sugar_recyclerView;
private ProgressBar progressBar;

private ArrayList<PatientRecordModel> patientRecordModelArrayList = new ArrayList<PatientRecordModel>();
private RecyclerView.Adapter bloodSugaradapter;

// for intent data
public String patient_id_from_intent, patient_name_from_intent, patient_dob_from_intent, patient_mobile_from_intent, patient_email_from_intent;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState)
{
    // Inflate the layout for this fragment
    View view = inflater.inflate(R.layout.fragment_sugar_level_report, container, false);

    findViewById(view);
    return view;  
}
public void findViewById(View view)
{
    view_constraintLayout = (ConstraintLayout)view.findViewById(R.id.view_constraintLayout);
    /*progressBar = (ProgressBar)view.findViewById(R.id.progressBar);*/
    blood_sugar_recyclerView = (RecyclerView)view.findViewById(R.id.blood_sugar_recyclerView);

    blood_sugar_recyclerView.setHasFixedSize(true);
    blood_sugar_recyclerView.setLayoutManager(new LinearLayoutManager(getActivity()));
    bloodSugaradapter = new SugarLevelReportAdapter(getActivity(), patientRecordModelArrayList);
    blood_sugar_recyclerView.setAdapter(bloodSugaradapter);

    loadData();
}
public void loadData()
{
    if(GlobalMethods.isNetworkConnected(getActivity()))
    {

        String[] names = getResources().getStringArray(R.array.names);

        for (int i = 0 ; i < names.length ; i++)
        {
            PatientRecordModel patientRecordModel = new PatientRecordModel();
            patientRecordModel.setPatient_name(names[i]);

            // log here is working fine , and its giving correct data
            Log.e("patientsName", patientRecordModel.getPatient_name());

            patientRecordModelArrayList.add(patientRecordModel);
            bloodSugaradapter.notifyDataSetChanged();
        }
    }
    else
    {

    }
}

适配器类

public class SugarLevelReportAdapter extends RecyclerView.Adapter<SugarLevelReportAdapter.SugarLevelReportHolder>{
public Context context;
public ArrayList<PatientRecordModel> patientRecordModelArrayList = new ArrayList<PatientRecordModel>();

public SugarLevelReportAdapter(Context context, ArrayList<PatientRecordModel> patientRecordModelArrayList)
{
    this.context = context;
    this.patientRecordModelArrayList = patientRecordModelArrayList;
}
@Override
public SugarLevelReportHolder onCreateViewHolder(ViewGroup parent, int viewType)
{
    View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.sugar_level_report_cardview, parent, false);
    SugarLevelReportHolder sugarLevelReportHolder = new SugarLevelReportHolder(view);
    return sugarLevelReportHolder;
}
@Override
public void onBindViewHolder(SugarLevelReportHolder holder, int position)
{
    PatientRecordModel patientRecordModel = patientRecordModelArrayList.get(position);

    Log.e("patient_name",patientRecordModel.getPatient_name());
    holder.patient_name_textView.setText(patientRecordModel.getPatient_name());
}
@Override
public int getItemCount()
{
    return patientRecordModelArrayList.size();
}
public static class SugarLevelReportHolder extends RecyclerView.ViewHolder
{
    public TextView month_textView, date_textView, year_textView;
    public TextView patient_name_textView, patient_count_textView, meal_type_textView;
    public ImageView overflow_menu_imageView;
    public SugarLevelReportHolder(View itemView)
    {
        super(itemView);
        month_textView = (TextView)itemView.findViewById(R.id.month_textView);
        date_textView = (TextView)itemView.findViewById(R.id.date_textView);
        year_textView = (TextView)itemView.findViewById(R.id.year_textView);
        patient_name_textView = (TextView)itemView.findViewById(R.id.patient_name_textView);
        patient_count_textView = (TextView)itemView.findViewById(R.id.patient_count_textView);
        meal_type_textView = (TextView)itemView.findViewById(R.id.meal_type_textView);
        overflow_menu_imageView = (ImageView)itemView.findViewById(R.id.overflow_menu_imageView);
    }
}

}

xml代码[fragment_sugar_level_report.xml]

<android.support.constraint.ConstraintLayout
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"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v7.widget.RecyclerView
    android:id="@+id/blood_sugar_recyclerView"
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:scrollbars="vertical"
    android:scrollbarSize="1dp"
    android:layout_marginLeft="8dp"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    android:layout_marginTop="8dp"
    android:layout_marginRight="8dp"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintBottom_toBottomOf="parent"
    android:layout_marginBottom="8dp">
</android.support.v7.widget.RecyclerView>

1 个答案:

答案 0 :(得分:0)

所以我在当前项目中遇到了类似的问题。我无法告诉您为什么会发生这种情况,但是要解决该问题,您需要将用于将数据更新的部件移动到适配器。 在您的适配器上创建以下方法:

public void updateData(List<PatientRecordModel> list){
   patientRecordModelArrayList  = list;
   notifyDatasetChanged();
  } 

在您想要更新数据的Fragment类上,只需调用

bloodSugaradapter.updateData(patientRecordModel);

同样,建议将视图加载为onViewCreated而不是onCreateView。还可以使用GSON或jackson之类的数据映射库来提高数据映射的速度和可靠性。查看比较here希望对您有所帮助