In Android development, Fragment is an important component used to build flexible user interfaces. When using Fragment, sometimes we need to obtain data from one Fragment in another Fragment. Then in the onViewCreated method of the fragment, we can obtain the data in the RecyclerView in other Fragments through the findViewById method. First, we need to make sure that the RecyclerView has been initialized and filled with data before getting the data. Then, we can get the instance of the target Fragment through the findFragmentById method of FragmentManager, and then get the instance of RecyclerView through the findViewById method of the instance. Finally, we can get the data through the RecyclerView adapter. In this way, we can get the data of RecyclerView in another Fragment in the current Fragment. This is a simple and effective method that can help us better handle the transfer and sharing of data in Android development.
Question content
I have fragment workoutfragment and bundle for transferring data to fragment delitefragment:
fragmentmanager fragmentmanager = getfragmentmanager(); fragmenttransaction fragmenttransaction = fragmentmanager.begintransaction(); fragmenttransaction.replace(r.id.fragment_container, new delitefragment()); fragmenttransaction.commit();
In the delitefragment, I have an onviewcreated method where the recycler view data call is locked.
@Override public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); //******************************** getting data from DeliteFragment getParentFragmentManager().setFragmentResultListener("text from WOF to AFJ", this, new FragmentResultListener() { @Override public void onFragmentResult(@NonNull String requestKey, @NonNull Bundle textBundle) { Integer number_workout_train_position = textBundle.getInt("text from WOF to AFJ"); String nameDayTrain = new CardSourceImplDayTrain(getActivity()).getCardData(number_workout_train_position).getTitle().toString(); } }); String nameDayTrainRW = nameDayTrain; recyclerView = view.findViewById(R.id.train_delite_recycleView); cardSource = new CardSourceImplDelite(getActivity().getApplicationContext(),nameDayTrainRW,nameDayTrainRW); adapter = new itemAdapterDelite(cardSource); }
How to get data in onviewcreated namedaytrain? (so it will go to recyclerview adapter)
Workaround
Use AndroidX view model library to communicate with your activity and fragments. It's very simple✍️
here: AndroidX Jetpack ViewModel
The above is the detailed content of How to get the data in recycleView's fragment onViewCreated from another fragment?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
