I have a problem when I want to access to my SharedPreferences inside doInBackground
. How can I do this?
Really thanks!
private class postData extends AsyncTask<String, Void, String> {
@Override
protected String doInBackground(String... params) {
// I need to access here to my SharedPreferences //
}
}