Adding a settings page similar to night light for Dark theme. it will allow the user to schedule
dark mode from sunrise to sunset
Test: make -j64 RunSettingsRoboTests ROBOTEST_FILTER="com.android.settings.display.DarkUIPreferenceControllerTest" && \
make -j64 RunSettingsRoboTests ROBOTEST_FILTER="com.android.settings.display.darkmode.DarkModeActivationPreferenceControllerTest" && \
make -j64 RunSettingsRoboTests ROBOTEST_FILTER="com.android.settings.display.darkmode.DarkModeObserverTest" && \
make -j64 RunSettingsRoboTests ROBOTEST_FILTER="com.android.settings.display.darkmode.DarkModeScheduleSelectorControllerTest"
Fixes: 141567787
Change-Id: I3094b655c04f59c23a95162a1be5ee8260e28a48
(cherry picked from commit 0828e6be9c
)
116 lines
4.3 KiB
Java
116 lines
4.3 KiB
Java
/*
|
|
* Copyright (C) 2019 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software distributed under the
|
|
* License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the specific language governing
|
|
* permissions and limitations under the License.
|
|
*/
|
|
|
|
package com.android.settings.display.darkmode;
|
|
|
|
import android.app.UiModeManager;
|
|
import android.content.Context;
|
|
import android.content.res.Configuration;
|
|
import android.view.View;
|
|
import android.widget.Button;
|
|
import androidx.preference.Preference;
|
|
import androidx.preference.PreferenceScreen;
|
|
import com.android.settings.R;
|
|
import com.android.settings.core.BasePreferenceController;
|
|
import com.android.settingslib.widget.LayoutPreference;
|
|
|
|
/**
|
|
* Controller for activate/deactivate night mode button
|
|
*/
|
|
public class DarkModeActivationPreferenceController extends BasePreferenceController {
|
|
private final UiModeManager mUiModeManager;
|
|
private Button mTurnOffButton;
|
|
private Button mTurnOnButton;
|
|
|
|
public DarkModeActivationPreferenceController(Context context,
|
|
String preferenceKey) {
|
|
super(context, preferenceKey);
|
|
|
|
mUiModeManager = context.getSystemService(UiModeManager.class);
|
|
}
|
|
|
|
@Override
|
|
public final void updateState(Preference preference) {
|
|
final boolean active = (mContext.getResources().getConfiguration().uiMode
|
|
& Configuration.UI_MODE_NIGHT_YES) != 0;
|
|
updateNightMode(active);
|
|
}
|
|
|
|
private void updateNightMode(boolean active) {
|
|
final int autoMode = mUiModeManager.getNightMode();
|
|
String buttonText;
|
|
|
|
if (autoMode == UiModeManager.MODE_NIGHT_AUTO) {
|
|
buttonText = mContext.getString(active
|
|
? R.string.dark_ui_activation_off_auto
|
|
: R.string.dark_ui_activation_on_auto);
|
|
} else {
|
|
buttonText = mContext.getString(active
|
|
? R.string.dark_ui_activation_off_manual
|
|
: R.string.dark_ui_activation_on_manual);
|
|
}
|
|
if (active) {
|
|
mTurnOnButton.setVisibility(View.GONE);
|
|
mTurnOffButton.setVisibility(View.VISIBLE);
|
|
mTurnOffButton.setText(buttonText);
|
|
} else {
|
|
mTurnOnButton.setVisibility(View.VISIBLE);
|
|
mTurnOffButton.setVisibility(View.GONE);
|
|
mTurnOnButton.setText(buttonText);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public CharSequence getSummary() {
|
|
final boolean isActivated = (mContext.getResources().getConfiguration().uiMode
|
|
& Configuration.UI_MODE_NIGHT_YES) != 0;
|
|
final int autoMode = mUiModeManager.getNightMode();
|
|
if (autoMode == UiModeManager.MODE_NIGHT_AUTO) {
|
|
return mContext.getString(isActivated
|
|
? R.string.dark_ui_summary_on_auto_mode_auto
|
|
: R.string.dark_ui_summary_off_auto_mode_auto);
|
|
} else {
|
|
return mContext.getString(isActivated
|
|
? R.string.dark_ui_summary_on_auto_mode_never
|
|
: R.string.dark_ui_summary_off_auto_mode_never);
|
|
}
|
|
}
|
|
|
|
private final View.OnClickListener mListener = new View.OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
final boolean active = (mContext.getResources().getConfiguration().uiMode
|
|
& Configuration.UI_MODE_NIGHT_YES) != 0;
|
|
mUiModeManager.setNightModeActivated(!active);
|
|
updateNightMode(!active);
|
|
}
|
|
};
|
|
|
|
@Override
|
|
public void displayPreference(PreferenceScreen screen) {
|
|
super.displayPreference(screen);
|
|
|
|
final LayoutPreference preference = screen.findPreference(getPreferenceKey());
|
|
mTurnOnButton = preference.findViewById(R.id.dark_ui_turn_on_button);
|
|
mTurnOnButton.setOnClickListener(mListener);
|
|
mTurnOffButton = preference.findViewById(R.id.dark_ui_turn_off_button);
|
|
mTurnOffButton.setOnClickListener(mListener);
|
|
}
|
|
|
|
@Override
|
|
public int getAvailabilityStatus() {
|
|
return AVAILABLE;
|
|
}
|
|
}
|