i must pass two parameters from fragment to another fragment. First parameter is type String and second parameter is type int. i want pass parameters with bundle but doesn't work.
FIRST FRAGMENT
Fragment fragment = new Fragment();
                Bundle bundle = new Bundle();
                bundle.putInt("totale", totalAmount);
                fragment.setArguments(bundle);
SECOND FRAGMENT
@Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        TextView titolo2 = (TextView) getView().findViewById(R.id.quantità2);
        Bundle bundle=this.getArguments();
        int myInt = bundle.getInt("totale", 0);
        titolo2.setText(myInt);
        return inflater.inflate(R.layout.fragment_two, container, false);
    }
 
     
     
     
     
    