I have 3 fragments which are shown using add tab methods in the main activity.
tablayout.addTab(one)
tablayout.addTab(two)
tablayout.addTab(three)
I have a non activity class operations which is passed the context of the fragments when ever it is called. The class operations will performs actions for the three fragments.
Operations op = new Operations(getActivity, list, emptyList, recyclerView)
The first parameter getActivity is the context of the calling fragment.
Fragment 1 has a method showMessage1 Fragment 2 has a method showMessage2 Fragment 3 has a method showMessage3
HOW CAN I CALL ANY ONE OF THESE METHODS FROM OPERATIONS CLASS WHICH IS HAVING THE CONTEXT OF ONE OF THESE FRAGMENTS?
you need to cast context to your Fragment class
Example, inside your Operations class, you need to cast your context to Fragment 1
When you need to call Fragment1's Method
When you need to call Fragment2's Method