Inside my fragment in the onCreateView method, I retrieve the Bundle which was set for the fragment using the following code:
Bundle args = getArguments();
String value = args.getString("fixedExpenseId");
But somehow the value is null when I run my code.
When I debug my program I retrieve the following variables:
As you kan see, the key I used is the same as the one inside the Bundle.
How is it possible that I retrieve null inside my
value
variable?