estou fazendo dessa forma:
//fragment 1 (pega valores digitados pelo usuário)
args = new Bundle();
args.putInt("man",Integer.parseInt(man_edit.getText().toString()));
args.putInt("woman",Integer.parseInt(woman_edit.getText().toString()));
args.putInt("children",Integer.parseInt(children_edit.getText().toString()));
tab = new Tab2();
tab.setArguments(args);
//Fragment 2 (exibe resultado de cálculos utilizando valores de man, woman e children)
m = getArguments().getInt("man");
w = getArguments().getInt("woman");
c = getArguments().getInt("children");
logCat exibe erro: java.lang.NullPointerException, ou seja ogetArguments(); não tá achando nada, está vazio.
alguém já implementou algo parecido? preciso de uma dica!