Lines Matching refs:Settings
17 package com.android.settings;
24 import android.provider.Settings;
25 import android.provider.Settings.SettingNotFoundException;
68 mOldBrightness = Settings.System.getInt(getContext().getContentResolver(),
69 Settings.System.SCREEN_BRIGHTNESS);
79 mOldAutomatic = Settings.System.getInt(getContext().getContentResolver(),
80 Settings.System.SCREEN_BRIGHTNESS_MODE);
105 setMode(isChecked ? Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC
106 : Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL);
117 Settings.System.putInt(getContext().getContentResolver(),
118 Settings.System.SCREEN_BRIGHTNESS,
143 if (mode == Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC) {
148 Settings.System.putInt(getContext().getContentResolver(),
149 Settings.System.SCREEN_BRIGHTNESS_MODE, mode);