Java tutorial
//package com.java2s; import android.app.Activity; import android.content.Context; import android.content.SharedPreferences; public class Main { public static boolean getWebviewHelpStatus(Context context) { SharedPreferences sp = context.getSharedPreferences("webview_help", Activity.MODE_PRIVATE); boolean ret = sp.getBoolean("webview_help", false); return ret; } }