Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { private static String FILE_NAME = "WasCopy"; public static final String CLICK_COUTNT = "CLICK_COUTNT"; public static void setClickCount(Context context, int count) { SharedPreferences sd = context.getSharedPreferences(FILE_NAME, Context.MODE_PRIVATE); SharedPreferences.Editor editor = sd.edit(); editor.putInt(CLICK_COUTNT, count); editor.commit(); } }