Java tutorial
//package com.java2s; import android.app.Activity; import android.content.Context; import android.content.SharedPreferences; public class Main { public static void setWebviewHelpStatus(Context context, boolean status) { SharedPreferences sp = context.getSharedPreferences("webview_help", Activity.MODE_PRIVATE); SharedPreferences.Editor tor = sp.edit(); tor.putBoolean("webview_help", status); tor.commit(); } }