用于注销的Android模式

时间:2014-01-13 11:15:02

标签: android logging

我很好奇是否因为注销而从应用程序注销的框架模式通常用作清除应用程序并启动它就像刚刚安装一样。

首先,是否有清除整个应用程序的快捷方式,或者您必须手动清除所有持久性数据,如SharedPreferences,数据库,文件?

第二,是否有任何标准化的Android注销模式?

2 个答案:

答案 0 :(得分:1)

首先 Is there any shortcut for clearing whole app or you have to clear all persistent data like SharedPreferences, database, files manually ?答案:

.clear()函数可用于清除数据。

例如:

editor.clear();
editor.commit(); // Make sure that you need to commit that.

第二次 is there any standardized Android logout pattern ?答案:

没有必要这样做。您只需使用SharedPreferences即可。

例如:

当您需要登录时,那时只需在SharedPreferences文件中保存用户登录凭据,否则当您需要注销时,只需清除该文件中的那些值即可。

就是这样。你很高兴。

答案 1 :(得分:0)

不,您必须在点击退出按钮时清除您的共享偏好和文件。