I have a function that do something when I press the volume button three times and it works fine.
The problem is that I want it to work in every activity and fragment in the program when the volume button is pressed three times and not only in the main activity.
You can separate the code of the listener into a separate abstract class and make extends of this class for all your activities
Create a BaseActivity.class with the following code
And in your activities