Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Shared Preferences allow you to save and retrieve persistent key-value pairs of primitive data types in Android applications. It can be used either inside a single app or shared between multiple apps.

learn more… | top users | synonyms

0
votes
1answer
185 views

Login with Facebook-Android-SDK 3.0 using Shared Preferences/Session

For a long while I was using a login almost identical to the one found in this tutorial until I realized it was deprecated. So like a good developer I decided to try upgrading my login to Facebook ...
0
votes
0answers
51 views

When notification arrived facebook sdk returns null session

My application needs facebook login to use its functionality . When a user open the application and logged in it keeps session. Although the user close the application app can receive notification and ...
1
vote
2answers
180 views

How to save session into phone?

Currently, my session always null, Suppose bundle will not null. protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
1
vote
1answer
294 views

Android Facebook sdk, the sharedPreferences never change?

Here is my code: mPrefs = getSharedPreferences("facebook_session",MODE_PRIVATE); String access_token = mPrefs.getString("access_token", null); long expires = ...
0
votes
3answers
142 views

How can I get my shared preferences?

I'm trying to do a simple Facebook Login in my app, but I got some questions about SharedPreferences. The idea is the App starts and goes to Activity A, it sees if you're logged in, if you aren't ...
0
votes
2answers
1k views

How to delete saved data in Shared Preferences in android?

I am using facebook api in my app. Its working fine i can login and post on wall. But i couldn't delete the login information. This is the code public boolean saveCredentials(Facebook facebook) ...
1
vote
1answer
767 views

Android : Sharing facebook session object among various activities

I need to implement facebook's share feature into my android app. My scenario is that I have to be able to use the facebook object created in the launch screen among all the other activities. I have ...