Java tutorial
//package com.java2s; //License from project: GNU General Public License import android.content.Context; public class Main { public static void setRatingNotiFalse(Context context) { context.getSharedPreferences("Settings", Context.MODE_PRIVATE).edit().putBoolean("rating_noti", false) .commit(); } }