I have a question about performances. Is it usefull to use onSaveInstantState if I use SharedPreferences ?
I mean, if it worth to make a condition to test:
if(savedInstanceState != null) {
// load with on save instant state
}
else {
// load with shared preferences
}
or I should always load the datas from SharedPreferences ?
Thank you