Java tutorial
//package com.java2s; //License from project: Open Source License import android.content.Context; import android.content.SharedPreferences; public class Main { public static void setMsgFirstSyncKey(String targetId, Context context) { SharedPreferences preferences = context.getSharedPreferences("messageFirstSync" + targetId, Context.MODE_PRIVATE); SharedPreferences.Editor editor1 = preferences.edit(); editor1.putInt("targetId", 1); editor1.commit(); } }