Java tutorial
//package com.java2s; import android.annotation.SuppressLint; import android.content.Context; import android.content.SharedPreferences; public class Main { @SuppressLint("CommitPrefEdits") public static void resetAll(String fileName, Context context) { SharedPreferences sharedPreferences = context.getSharedPreferences(fileName, Context.MODE_PRIVATE); SharedPreferences.Editor editor = sharedPreferences.edit(); editor.clear(); editor.commit(); } }