blob: 21bfef2053d7228ac3babb81d89d946ef7d69153 [file] [log] [blame]
Barnaby James092c62f2014-08-08 21:01:01 -07001/*
2 * Copyright (C) 2014 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
17package com.android.settings;
18
Vasu Nori1d89a192015-12-11 11:56:50 -080019import android.content.Context;
Barnaby James092c62f2014-08-08 21:01:01 -070020import android.content.Intent;
Vasu Nori1d89a192015-12-11 11:56:50 -080021import android.net.ConnectivityManager;
Barnaby James092c62f2014-08-08 21:01:01 -070022import android.provider.Settings;
23import android.util.Log;
24
Barnaby Jamesc55ea152015-04-13 14:33:53 -070025import com.android.settings.utils.VoiceSettingsActivity;
26
Barnaby James092c62f2014-08-08 21:01:01 -070027/**
28 * Activity for modifying the {@link Settings.Global#AIRPLANE_MODE_ON AIRPLANE_MODE_ON}
29 * setting using the Voice Interaction API.
30 */
31public class AirplaneModeVoiceActivity extends VoiceSettingsActivity {
32 private static final String TAG = "AirplaneModeVoiceActivity";
33
Barnaby Jamesc55ea152015-04-13 14:33:53 -070034 protected boolean onVoiceSettingInteraction(Intent intent) {
Barnaby James092c62f2014-08-08 21:01:01 -070035 if (intent.hasExtra(Settings.EXTRA_AIRPLANE_MODE_ENABLED)) {
Vasu Nori1d89a192015-12-11 11:56:50 -080036 ConnectivityManager mgr = (ConnectivityManager) getSystemService(
37 Context.CONNECTIVITY_SERVICE);
38 mgr.setAirplaneMode(intent.getBooleanExtra(
39 Settings.EXTRA_AIRPLANE_MODE_ENABLED, false));
Barnaby James092c62f2014-08-08 21:01:01 -070040 } else {
41 Log.v(TAG, "Missing airplane mode extra");
42 }
Barnaby Jamesc55ea152015-04-13 14:33:53 -070043 return true;
Barnaby James092c62f2014-08-08 21:01:01 -070044 }
45}