以下是我的Android应用程序的注销,我看看我的logcat,我看到一个服务仍在运行(BeaconService“),我无法弄清楚为什么会发生这种情况,我是否需要做任何事情到我的activity类中的onPostExecute()或onDestory()方法?
public void logOut(){
SharedPreferences.Editor editor = MainActivity.sp.edit();
editor.putString("token", null );
editor.putString("username", null);
editor.commit();
currentUser = null;
Intent main = new Intent(this, MainActivity.class);
startActivity(main);
}