Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { static public void removePreferences(Context context, String key) { SharedPreferences pref = context.getSharedPreferences("pref", Context.MODE_PRIVATE); SharedPreferences.Editor editor = pref.edit(); editor.remove(key); editor.commit(); } }