protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(R.layout.a
You can save to shared preference in this way
SharedPreferences sp = context.getSharedPreferences( "file name", 0); SharedPreferences.Editor spEdit = sp.edit(); spEdit.putLong(key, value); spEdit.commit();