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 {
    /**
     *
     * @param ctx
     * @param key
     * @return
     */
    public static boolean removeGlobalSetting(Context ctx, String key) {
        SharedPreferences setting = ctx.getSharedPreferences(ctx.getPackageName(), 0);
        return setting.edit().remove(key).commit();
    }
}