I need to send data from Fragment to another activity
I am using this code in my LoadsFragment under HomeActivity
Intent intent = new Intent(activity, LoadActivity.class);
intent.putExtra("loadsPosition",position);
activity.startActivity(intent);
in another activity(LoadActivity) to receive data
Intent intent=getIntent();
String loadsPosition = intent.getStringExtra("loadsPosition");
but intent has no Extras
see the screenshots below