Barnaby James | c55ea15 | 2015-04-13 14:33:53 -0700 | [diff] [blame] | 1 | /* |
| 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. Laligand | 1f403d5 | 2015-04-14 16:14:16 -0700 | [diff] [blame] | 17 | package com.android.settings.fuelgauge; |
Barnaby James | c55ea15 | 2015-04-13 14:33:53 -0700 | [diff] [blame] | 18 | |
Makoto Onuki | 5b60fdb | 2018-03-20 13:05:22 -0700 | [diff] [blame] | 19 | import static android.provider.Settings.EXTRA_BATTERY_SAVER_MODE_ENABLED; |
| 20 | |
Wesley Wang | c01d929 | 2023-04-06 17:11:23 +0800 | [diff] [blame] | 21 | import static com.android.settingslib.fuelgauge.BatterySaverLogging.SAVER_ENABLED_VOICE; |
| 22 | |
Barnaby James | c55ea15 | 2015-04-13 14:33:53 -0700 | [diff] [blame] | 23 | import android.content.Intent; |
Barnaby James | c55ea15 | 2015-04-13 14:33:53 -0700 | [diff] [blame] | 24 | import android.util.Log; |
| 25 | |
| 26 | import com.android.settings.utils.VoiceSettingsActivity; |
Makoto Onuki | 5b60fdb | 2018-03-20 13:05:22 -0700 | [diff] [blame] | 27 | import com.android.settingslib.fuelgauge.BatterySaverUtils; |
Jason Monk | 39b4674 | 2015-09-10 15:52:51 -0400 | [diff] [blame] | 28 | |
Barnaby James | c55ea15 | 2015-04-13 14:33:53 -0700 | [diff] [blame] | 29 | /** |
Jun Lan | cca804e | 2023-11-02 18:55:52 +0800 | [diff] [blame] | 30 | * Activity for modifying the {@link android.os.PowerManager} power save mode setting using the |
| 31 | * Voice Interaction API. |
Barnaby James | c55ea15 | 2015-04-13 14:33:53 -0700 | [diff] [blame] | 32 | */ |
| 33 | public class BatterySaverModeVoiceActivity extends VoiceSettingsActivity { |
| 34 | private static final String TAG = "BatterySaverModeVoiceActivity"; |
| 35 | |
P.Y. Laligand | 1f403d5 | 2015-04-14 16:14:16 -0700 | [diff] [blame] | 36 | @Override |
Barnaby James | c55ea15 | 2015-04-13 14:33:53 -0700 | [diff] [blame] | 37 | protected boolean onVoiceSettingInteraction(Intent intent) { |
| 38 | if (intent.hasExtra(EXTRA_BATTERY_SAVER_MODE_ENABLED)) { |
Jun Lan | cca804e | 2023-11-02 18:55:52 +0800 | [diff] [blame] | 39 | if (BatterySaverUtils.setPowerSaveMode( |
| 40 | this, |
Makoto Onuki | 5b60fdb | 2018-03-20 13:05:22 -0700 | [diff] [blame] | 41 | intent.getBooleanExtra(EXTRA_BATTERY_SAVER_MODE_ENABLED, false), |
Jun Lan | cca804e | 2023-11-02 18:55:52 +0800 | [diff] [blame] | 42 | /* needFirstTimeWarning= */ true, |
| 43 | SAVER_ENABLED_VOICE)) { |
Barnaby James | c55ea15 | 2015-04-13 14:33:53 -0700 | [diff] [blame] | 44 | 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 | } |