I want to check if the user enabled background data on his/her device and display a message if it is disabled.
How can I check if it has been enabled? I tried
import android.provider.Settings;
//...
Settings.System.getString(getContentResolver(), Settings.Secure.BACKGROUND_DATA);
//and
Settings.Secure.getString(getContentResolver(), Settings.Secure.BACKGROUND_DATA);
But they are returning null.
Thank you, Achie.