linphone-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Linphone-users] Linphone-Android: Where to Store SIP Account progra


From: Erhan Tepe
Subject: Re: [Linphone-users] Linphone-Android: Where to Store SIP Account programmatically
Date: Wed, 18 Apr 2012 15:15:04 +0300

Winona,

Let's say your login page comes with an activity class "LoginPageActivity". You can define a SharedPreferences object;

private SharedPreferences pref;


Inside onCreate() method, you can initiate it as;


pref = PreferenceManager.getDefaultSharedPreferences(this);


You can then access those values;


String lUserName = pref.getString(getString(R.string.pref_username_key), null);


Keep in mind that I haven't tested any of these. 


2012/4/18 Winona Kwok <address@hidden>
Hi Developers,

I have a login page for my linphone-android app, and this login page is called before starting the linphoneService class, I would like to store the user's credentials (username, password) so that whenever the user exit or force stop the app, they will still be logged in into their SIP account. Thus they will only be logged out of their SIP account if they call the logout class. May I know where and how to store SIP account credentials (username, password)? I know I would have to use SharedPreferences, but I am not really sure how to apply it here. Please guide me & thanks for your help in advance!

--
Best Regards,
Winona Kwok

_______________________________________________
Linphone-users mailing list
address@hidden
https://lists.nongnu.org/mailman/listinfo/linphone-users



reply via email to

[Prev in Thread] Current Thread [Next in Thread]