Skip to content
Advertisement

Passing Nullable Values from Activity to Fragment

When passing Strings from an activity to a fragment using

JavaScript

I can also pass potential null and receive it in the fragment with

JavaScript

I’d also like to pass nullable Floats and Integers but the corresponding putInt() and putFloat() methods don’t allow passing null. I am now passing additional flags as arguments that indicate whether a value is set or not but that seems rather clumsy in comparison. Is there a better way to pass potential null values (preferably available in API level 14 and later)?

Advertisement

Answer

I prefer to skip putting something in case of null into bundle.
In fragment just check Bundle.containsKey(String key), if doesn’t means null.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement