I am creating shared preferences objects as follows:
sh_subjecturi = context.getSharedPreferences("MyCourse__Set", Context.MODE_APPEND);
Editor editor_subjuri_set;
editor_subjuri_set = sh_subjecturi.edit();
Next in the loop, I am putting the data using the editor object.
When I am executing my program , I am getting the MyCourse_Set.xml
file but the data is not in order (jumbling format i.e chapters are not coming in order as available).
How do I solve this issue?