I want to try getting some value from my Setting using the following code:
import android.content.SharedPreferences;
import android.preference.PreferenceManager;
import android.content.*;
public class TCPdumpHandler {
    public void getPreference() {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getBaseContext());
        Boolean checkboxPreference = prefs.getBoolean("checkboxPref", true);
    }
}
But the error is : The method getBaseContext() is undefined for the type TCPdumpHandler
Can you tell me the reason why?
 
     
     
    