blob: fb12dbefebdc33ebca8b483a238beba89296934d [file] [log] [blame]
Barnaby Jamesc55ea152015-04-13 14:33:53 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
P.Y. Laligand1f403d52015-04-14 16:14:16 -070017package com.android.settings.fuelgauge;
Barnaby Jamesc55ea152015-04-13 14:33:53 -070018
Makoto Onuki5b60fdb2018-03-20 13:05:22 -070019import static android.provider.Settings.EXTRA_BATTERY_SAVER_MODE_ENABLED;
20
Wesley Wangc01d9292023-04-06 17:11:23 +080021import static com.android.settingslib.fuelgauge.BatterySaverLogging.SAVER_ENABLED_VOICE;
22
Barnaby Jamesc55ea152015-04-13 14:33:53 -070023import android.content.Intent;
Barnaby Jamesc55ea152015-04-13 14:33:53 -070024import android.util.Log;
25
26import com.android.settings.utils.VoiceSettingsActivity;
Makoto Onuki5b60fdb2018-03-20 13:05:22 -070027import com.android.settingslib.fuelgauge.BatterySaverUtils;
Jason Monk39b46742015-09-10 15:52:51 -040028
Barnaby Jamesc55ea152015-04-13 14:33:53 -070029/**
Jun Lancca804e2023-11-02 18:55:52 +080030 * Activity for modifying the {@link android.os.PowerManager} power save mode setting using the
31 * Voice Interaction API.
Barnaby Jamesc55ea152015-04-13 14:33:53 -070032 */
33public class BatterySaverModeVoiceActivity extends VoiceSettingsActivity {
34 private static final String TAG = "BatterySaverModeVoiceActivity";
35
P.Y. Laligand1f403d52015-04-14 16:14:16 -070036 @Override
Barnaby Jamesc55ea152015-04-13 14:33:53 -070037 protected boolean onVoiceSettingInteraction(Intent intent) {
38 if (intent.hasExtra(EXTRA_BATTERY_SAVER_MODE_ENABLED)) {
Jun Lancca804e2023-11-02 18:55:52 +080039 if (BatterySaverUtils.setPowerSaveMode(
40 this,
Makoto Onuki5b60fdb2018-03-20 13:05:22 -070041 intent.getBooleanExtra(EXTRA_BATTERY_SAVER_MODE_ENABLED, false),
Jun Lancca804e2023-11-02 18:55:52 +080042 /* needFirstTimeWarning= */ true,
43 SAVER_ENABLED_VOICE)) {
Barnaby Jamesc55ea152015-04-13 14:33:53 -070044 notifySuccess(null);
45 } else {
46 Log.v(TAG, "Unable to set power mode");
47 notifyFailure(null);
48 }
49 } else {
50 Log.v(TAG, "Missing battery saver mode extra");
51 }
52 return true;
53 }
54}