コードを微修正

This commit is contained in:
nero 2023-12-19 12:00:56 +09:00
parent ac2001142f
commit e70f930929

View File

@ -102,7 +102,6 @@ public class LibraryTopFragment extends Fragment {
textView.setText(document);
}
}
}
@Override
@ -113,8 +112,6 @@ public class LibraryTopFragment extends Fragment {
// Use view.findViewById instead of findViewById
RecyclerView documentRecyclerView = view.findViewById(R.id.document_list);
if (documentRecyclerView != null) {
List<String> documentList = new ArrayList<>();
documentList.add("Document A");
documentList.add("Document B");
@ -127,9 +124,6 @@ public class LibraryTopFragment extends Fragment {
// Use a LinearLayoutManager to specify the layout
LinearLayoutManager layoutManager = new LinearLayoutManager(requireContext());
documentRecyclerView.setLayoutManager(layoutManager);
}
return view;
}
}