I have stored some data to a Global Class By using the Application Context In One Activity. Later I have to Retrieve those values in A Fragment. I have done something like t
you can define a global variable :
private Context globalContext = null;
and in the onCreate method, initialize it :
globalContext = this.getActivity();
And by that you can use the "globalContext" variable in all your fragment functions/methods.
Good luck.