I’m using the new Android Facebook SDK 3.0.
I’m implementing the login button in a dedicated activity which has the GraphUser with user details after the login process.
I want to know if there is any way to get the GraphUser object in another activity without a graph request?
You can either create your own subclass of Application with setters/getters for your GraphUser, and call set/get in your Activities, or you can do something like:
in the caller activity, and put the jsonString in a bundle to be passed in the intent, then on the callee side, do something like:
Disclaimer: I just type out the above, so there may be syntax errors, and you may need to put a try/catch around
new JsonObject.