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