I have 2 Fragment,Frag1 and Frag2 in Bottom navigation and in Frag1 I have implemented retrofit through viewmodel(MVVM) and when I try to send query by buttons in viewpager2 to frag1..getactivity is null..also attach detach do not work.
Please suggest some ways.
Implement fragments like this in your activity_main.xml layout:
Now in your MainActivity.java file:
In your fragment Frag1.java:
To send the Data:
or ((MainActivity) getContext()).sendToFrag1(data);