Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.content.Context;
import android.content.SharedPreferences;

public class Main {
    /**
     * Delete a preference.
     * 
     * @param ctxt
     *        The current context.
     * @param pref
     *        The name of the preference
     */
    public static void delPref(Context ctxt, String pref) {
        SharedPreferences sharedPreferences = ctxt.getSharedPreferences("drupoid", Context.MODE_PRIVATE);
        sharedPreferences.edit().remove(pref).apply();
    }
}