sharedpreferences in fragment kotlin code example
Example 1: sharedpreferences in fragment
// this = your fragment
SharedPreferences preferences = this.getActivity().getSharedPreferences("pref", Context.MODE_PRIVATE);
Example 2: sharedpreferences kotlin
val sharedPref = ""
val sharedPreferences: SharedPreferences = this.getSharedPreferences(sharedPref,
Context.MODE_PRIVATE)