Java tutorial
//package com.java2s; //License from project: GNU General Public License import android.content.Context; import android.content.SharedPreferences; public class Main { public static Boolean getRatingNoti(Context context) { Boolean result = true; try { SharedPreferences settings = context.getSharedPreferences("Settings", Context.MODE_PRIVATE); result = settings.getBoolean("rating_noti", true); } catch (Exception e) { e.printStackTrace(); } return result; } }