/* * Copyright (C) 2014 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.voice; import android.preference.Preference; import android.provider.Settings; import com.android.settings.R; import com.android.settings.SettingsPreferenceFragment; import com.android.settings.voice.VoiceInputPreference.RadioButtonGroupState; import android.os.Bundle; import android.preference.PreferenceCategory; import android.widget.Checkable; public class VoiceInputSettings extends SettingsPreferenceFragment implements Preference.OnPreferenceClickListener, RadioButtonGroupState { private static final String TAG = "VoiceInputSettings"; private static final boolean DBG = false; /** * Preference key for the engine selection preference. */ private static final String KEY_SERVICE_PREFERENCE_SECTION = "voice_service_preference_section"; private PreferenceCategory mServicePreferenceCategory; private CharSequence mInteractorSummary; private CharSequence mRecognizerSummary; private CharSequence mInteractorWarning; /** * The currently selected engine. */ private String mCurrentKey; /** * The engine checkbox that is currently checked. Saves us a bit of effort * in deducing the right one from the currently selected engine. */ private Checkable mCurrentChecked; private VoiceInputHelper mHelper; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.voice_input_settings); mServicePreferenceCategory = (PreferenceCategory) findPreference( KEY_SERVICE_PREFERENCE_SECTION); mInteractorSummary = getActivity().getText( R.string.voice_interactor_preference_summary); mRecognizerSummary = getActivity().getText( R.string.voice_recognizer_preference_summary); mInteractorWarning = getActivity().getText(R.string.voice_interaction_security_warning); } @Override public void onStart() { super.onStart(); initSettings(); } private void initSettings() { mHelper = new VoiceInputHelper(getActivity()); mHelper.buildUi(); mServicePreferenceCategory.removeAll(); if (mHelper.mCurrentVoiceInteraction != null) { mCurrentKey = mHelper.mCurrentVoiceInteraction.flattenToShortString(); } else if (mHelper.mCurrentRecognizer != null) { mCurrentKey = mHelper.mCurrentRecognizer.flattenToShortString(); } else { mCurrentKey = null; } for (int i=0; i