This might be a very simple issue. But I'am getting difficulty to find the problem where i have done.
I'am passing data from One fragment to other fragment.
This is my code which i have written to pass the data.
Fragment fr = new ProjectFragment();
Bundle args = new Bundle();
args.putString("project_id", pro.p_id);
fr.setArguments(args);
Receiving code.
String project_id = getArguments().getString("project_id");
I'am getting null value in project_id. Please help me to solve this problem.