If you are calling an activity from a fragment and you want to send data to Activity you can use intents like below:
Intent intent = new Intent(getActivity(), YourActivity.class);
String name = "Transporter";
intent.putExtra("name", name);
startActivity(intent);
And in your activity you should get the data like this:
try {
Intent intent = getIntent();
String name = intent.getStringExtra("name");
} catch(Exception e) {
e.printStackTrace();
}