I am trying to pass Parcelable from master to detail view. I found out that `arguments` is null when...
a
I am trying to pass Parcelable from master to detail view. I found out that
arguments
is null when I use
putParcelable
so I first have to instantiate it with
Bundle()
. Am I doing something wrong? I do not see any example with this mention ...