HomeSort by relevance Sort by last modified time
    Searched defs:automatic (Results 1 - 2 of 2) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
BrightnessController.java 52 int automatic; local
54 automatic = Settings.System.getInt(mContext.getContentResolver(),
57 automatic = 0;
59 control.setChecked(automatic != 0);
79 public void onChanged(ToggleSlider view, boolean tracking, boolean automatic, int value) {
80 setMode(automatic ? Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC
82 if (!automatic) {
  /packages/apps/Settings/src/com/android/settings/
BrightnessPreference.java 225 myState.automatic = mCheckBox.isChecked();
247 setMode(myState.automatic ? 1 : 0);
253 boolean automatic; field in class:BrightnessPreference.SavedState
260 automatic = source.readInt() == 1;
269 dest.writeInt(automatic ? 1 : 0);

Completed in 39 milliseconds