• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
17 package com.android.inputmethod.latin.settings;
18 
19 import android.os.Bundle;
20 
21 import com.android.inputmethod.latin.R;
22 
23 import java.util.ArrayList;
24 
25 /**
26  * "Multilingual options" settings sub screen.
27  *
28  * This settings sub screen handles the following input preferences.
29  * - Language switch key
30  * - Switch to other input methods
31  */
32 public final class MultiLingualSettingsFragment extends SubScreenFragment {
33     @Override
onCreate(final Bundle icicle)34     public void onCreate(final Bundle icicle) {
35         super.onCreate(icicle);
36         addPreferencesFromResource(R.xml.prefs_screen_multilingual);
37         if (!Settings.ENABLE_SHOW_LANGUAGE_SWITCH_KEY_SETTINGS) {
38             removePreference(Settings.PREF_SHOW_LANGUAGE_SWITCH_KEY);
39             removePreference(Settings.PREF_INCLUDE_OTHER_IMES_IN_LANGUAGE_SWITCH_LIST);
40         }
41     }
42 }
43