summaryrefslogtreecommitdiffstats
path: root/src/com/android/settings/CryptKeeper.java
diff options
context:
space:
mode:
authorSeigo Nonaka <nona@google.com>2015-05-04 17:31:00 -0700
committerYohei Yukawa <yukawa@google.com>2015-05-07 23:18:49 +0000
commite792729b4ca60632b43c9e1ee6126fb5e031deae (patch)
treee07926a21fe5a79f44c8d84788fca222c62fb262 /src/com/android/settings/CryptKeeper.java
parentbc95630994227736aff46885ca1d9345829e83e2 (diff)
downloadpackages_apps_Settings-e792729b4ca60632b43c9e1ee6126fb5e031deae.zip
packages_apps_Settings-e792729b4ca60632b43c9e1ee6126fb5e031deae.tar.gz
packages_apps_Settings-e792729b4ca60632b43c9e1ee6126fb5e031deae.tar.bz2
Making the behavior deterministic when the IME picker is shown.
In the language & input settings, the auxiliary IME subtypes have been hidden since they should not be a default. With Id156c85535a22, now we can explicitly control the behavior of input method picker. Note the this CL should not change any user visible behaviors. Bug: 20763994 Change-Id: I9f797d07ba02363fab58ceb9aecb3cc11fbc407e
Diffstat (limited to 'src/com/android/settings/CryptKeeper.java')
-rw-r--r--src/com/android/settings/CryptKeeper.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/settings/CryptKeeper.java b/src/com/android/settings/CryptKeeper.java
index 7005ece..653a781 100644
--- a/src/com/android/settings/CryptKeeper.java
+++ b/src/com/android/settings/CryptKeeper.java
@@ -765,7 +765,7 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList
imeSwitcher.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
- imm.showInputMethodPicker();
+ imm.showInputMethodPicker(false /* showAuxiliarySubtypes */);
}
});
}