1/*
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
19import android.content.Context;
20import android.content.Intent;
21import android.net.ConnectivityManager;
22import android.provider.Settings;
23import android.util.Log;
24
25import com.android.settings.utils.VoiceSettingsActivity;
26
27/**
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
34    protected boolean onVoiceSettingInteraction(Intent intent) {
35        if (intent.hasExtra(Settings.EXTRA_AIRPLANE_MODE_ENABLED)) {
36            ConnectivityManager mgr = (ConnectivityManager) getSystemService(
37                    Context.CONNECTIVITY_SERVICE);
38            mgr.setAirplaneMode(intent.getBooleanExtra(
39                    Settings.EXTRA_AIRPLANE_MODE_ENABLED, false));
40        } else {
41            Log.v(TAG, "Missing airplane mode extra");
42        }
43        return true;
44    }
45}
46