I have an Fragment, witch should execute a (public) Methode reset() from the Acitivity the Fragment is called from. I was searching for hours but I couldn't find anything that fits for me :( I found for example this page: Calling Activity methods from Fragment ,but somehow, it doesn't work.
The other way there's no problem:
Input_tap Input_tap = (Input_tap) getFragmentManager().findFragmentById(R.id.input);
Input_tap.reset();
Does someone has any idea how to do it the other way? and: Does the Methode has to be public - its a "void" Methode?
Thank you