I made class Employee
and I also made List<Employee>
which accept object from the the class.
I put three objects in that list and I want to save them after close the app. I try to use SharedPreferences
to put the list but it seem that SharedPreferences
does not accept to put list in it. How can I do it?
@Override
protected void onPause() {
super.onPause();
SharedPreferences data = this.getSharedPreferences("data",MODE_PRIVATE);
SharedPreferences.Editor editor = data.edit();
// I cant use editor to put list<Employee>
}