I want to transfer the user ID from the main Activity to a fragment.
So in the main activity, I do:
Fragment fragment = new Fragment();
final Bundle bundle = new Bundle();
bundle.putString("id_User", id);
Log.i("BUNDLE", bundle.toString());
fragment.setArguments(bundle);
And in the log I can see
BUNDLE : Bundle[{id_User=1}]
In the fragment, I test it in onCreate
Bundle arguments = getArguments();
if (arguments != null)
{
Log.i("BUNDLE != null","NO NULL");
} else {
Log.i("BUNDLE == null","NULL");
}
And I have
BUNDLE == null: NULL
So the transfer is successful, but how can I receive the data in fragment, please?