Im having a issue I dont know how to resolve.
I have a fragment with a editText and a button.
The button launches a fragment map like this:
public void onClick(View view) {
        //Fragment fragment = null;
        switch (view.getId()) {
            case R.id.SearchButton:
                Home activity = (Home) getActivity();
                if(activity != null)activity.openMapFragment();
                break;
        }
and the function openMapFragment():
public void openMapFragment(){
        Fragment fragment = new gMapFragment();
        replaceFragment(fragment);
    }
How would i do to send the text inserted on editText field as a address to look for on map fragment?
 
    