How can i logout from android application [closed]
I am new to android. I want code for logout from my application .I use shared preferences in my application. I want to put logout facility in my appplication.
Yuu can clear the SharedPreference
on Logout which you have set during login.
OnClick
of Logout:
SharedPreferences sf = getSharedPreferences("UserLogin", MODE_WORLD_WRITEABLE);
SharedPreferences.Editor edt = sf.edit();
edt.putString("UserName", "");
edt.putString("PassWord", "");
edt.commit();
Hope this will help you...
精彩评论