我有一个选项卡式活动。每个片段中都有一个 RecyclerView。例如,如果滚动到其他片段并返回,我的 RecyclerView 将不会更新。如果我只是启动应用程序,它就可以工作。为了更新我的 RecyclerView,我更改了例如 driffrent 活动中的名称,并在不同的类中调用了一个方法来更新我的 RecyclerView,这只是有时有效。
onResume()当您退出活动以更改数据并返回到片段时,我还尝试更新整个片段(在 中)。
我发现问题只在onCreateView片段被第二次调用时才会出现。
这是我的片段类:
public static class DayFragment extends Fragment {
private static final String SECTION_NUMBER = "section_number";
public DayFragment() {
}
public static DayFragment newInstance(int sectionNumber) {
DayFragment fragment = new DayFragment();
Bundle args = new Bundle();
args.putInt(SECTION_NUMBER, sectionNumber);
fragment.setArguments(args);
return fragment;
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_main, container, false);
Day day = new Day(getArguments().getInt(SECTION_NUMBER, 0) - 1, rootView, getContext(), getContext().getFilesDir());
MainActivity.DAYS.add(day);
day.createList();
System.out.println("CREATED" + (getArguments().getInt(SECTION_NUMBER, 0) - 1));
return rootView;
}
}
设置列表:
public void createList() {
dayList = day.findViewById(R.id.dayList); // day is the rootView of the fragment passed on to this object of a class
lessonsAdapter = new LessonListAdapter();
dayList.setAdapter(lessonsAdapter);
dayList.setLayoutManager(new LinearLayoutManager(context) {
@Override
public boolean canScrollVertically() {
return false;
}
});
dayList.addItemDecoration(new MarginItemDecoration(context));
}
所以请告诉我我需要做什么,以便我的 RecyclerView 每次都会更新。
慕田峪9158850
HUWWW
阿波罗的战车
拉丁的传说
相关分类