清除Android中的旧偏好

时间:2014-09-16 06:17:00

标签: android sharedpreferences google-play

在我之前的Android应用程序版本中,我使用的是默认共享首选项。但现在我使用自己的应用程序特定首选项来存储数据。我想使用Play商店应用程序发布更新清除所有已安装应用程序的旧首选项。 任何建议

1 个答案:

答案 0 :(得分:0)

试试这个:

SharedPreferences.Editor editor = getSharedPreferences("myPref", Context.MODE_PRIVATE).edit();//type the old preference file name
    editor.clear().commit();