Hello!
I have an Activity "A" which instantiates two objects from the Facebook Android SDK. I put these two objects into a static HashMap with unique static keys and their references. From other activities "B" and "C" I'm able to get these two corresponding references via myhashmap.get(). These two Activities are within the same application. So far so good.
Within Activity "A" I start a Service also part of the same application. My problem is that I now want to get access to my two objects stored in the static HashMap of Activity "A" but the HashMap is empty?!?
So my question how can I get access to objects which were created by my Activity "A" from my service ?
Any tips are more than welcome
Thanks Frank