diff options
author | 2014-09-12 12:24:32 +0900 | |
---|---|---|
committer | 2014-09-12 02:00:26 -0700 | |
commit | 3a90cb9ad00150b1a557c67c280eba296cebc625 (patch) | |
tree | 8eef709917495ba790321d1d76bbc5e51537bc4c /java/src/com/android/inputmethod/latin/settings/AppearanceSettingsFragment.java | |
parent | 64dd48e381266ac63a2b9d6145040191bacdae10 (diff) | |
download | latinime-3a90cb9ad00150b1a557c67c280eba296cebc625.tar.gz latinime-3a90cb9ad00150b1a557c67c280eba296cebc625.tar.xz latinime-3a90cb9ad00150b1a557c67c280eba296cebc625.zip |
Reorganize settings in Google Keyboard
Changes :
Input languages -> Languages
Input preferences -> Preferences
Multi lingual Options -> Multilingual Options
Keyboard Theme -> Theme
Gesture typing preferences -> Gesture typing
**New
Appearance
-> Theme
-> Custom input style
**Removed
Multilingual options from L dynamically
Bug: 11866784
Change-Id: I07404c27868e1b087b0cafb63d2031a5b493a885
Diffstat (limited to 'java/src/com/android/inputmethod/latin/settings/AppearanceSettingsFragment.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/settings/AppearanceSettingsFragment.java | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/settings/AppearanceSettingsFragment.java b/java/src/com/android/inputmethod/latin/settings/AppearanceSettingsFragment.java new file mode 100644 index 000000000..f5e4d33a2 --- /dev/null +++ b/java/src/com/android/inputmethod/latin/settings/AppearanceSettingsFragment.java @@ -0,0 +1,41 @@ +/* + * 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.inputmethod.latin.settings; + +import android.os.Bundle; + +import com.android.inputmethod.latin.R; + + +/** + * "Appearance" settings sub screen. + */ +public final class AppearanceSettingsFragment extends SubScreenFragment { + @Override + public void onCreate(final Bundle icicle) { + super.onCreate(icicle); + addPreferencesFromResource(R.xml.prefs_screen_appearance); + } + + @Override + public void onResume() { + super.onResume(); + CustomInputStyleSettingsFragment.updateCustomInputStylesSummary( + findPreference(Settings.PREF_CUSTOM_INPUT_STYLES)); + ThemeSettingsFragment.updateKeyboardThemeSummary(findPreference(Settings.SCREEN_THEME)); + } +} |