diff options
author | Yohei Yukawa <yukawa@google.com> | 2014-05-27 20:32:34 +0900 |
---|---|---|
committer | Yohei Yukawa <yukawa@google.com> | 2014-05-27 20:32:34 +0900 |
commit | 529001f06761205bcaae1570d81556be397f56fb (patch) | |
tree | c31d64dd93b0fcae3a5c48d8fb7645b6dcad2919 /core/tests/inputmethodtests/src | |
parent | c3a6e23e3f286271abbda0d99edee35d0ceb6692 (diff) | |
download | frameworks_base-529001f06761205bcaae1570d81556be397f56fb.zip frameworks_base-529001f06761205bcaae1570d81556be397f56fb.tar.gz frameworks_base-529001f06761205bcaae1570d81556be397f56fb.tar.bz2 |
Switch back to StaticRotationList from DynamicRotationList
Ic005b94379f9d847ea, which introduced DynamicRotationList for
smarter input method rotation, is suspected to be causing a
strange behavior that InputMethodManager#switchToNextInputMethod
is choosing unexected/disabled IME/subtype.
With this CL, we switch back to StaticRotationList until the root
cause is addressed.
BUG: 7043015
Change-Id: I95fc8b28536cea6d09ea325e0caee14007cfc0a7
Diffstat (limited to 'core/tests/inputmethodtests/src')
-rw-r--r-- | core/tests/inputmethodtests/src/android/os/InputMethodSubtypeSwitchingControllerTest.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/tests/inputmethodtests/src/android/os/InputMethodSubtypeSwitchingControllerTest.java b/core/tests/inputmethodtests/src/android/os/InputMethodSubtypeSwitchingControllerTest.java index 04cfe05..c0c20e2 100644 --- a/core/tests/inputmethodtests/src/android/os/InputMethodSubtypeSwitchingControllerTest.java +++ b/core/tests/inputmethodtests/src/android/os/InputMethodSubtypeSwitchingControllerTest.java @@ -214,8 +214,9 @@ public class InputMethodSubtypeSwitchingControllerTest extends InstrumentationTe disabledSubtypeUnawareIme, null); } + // This test is disabled until DynamicRotationList is enabled. @SmallTest - public void testControllerImplWithUserAction() throws Exception { + public void DISABLED_testControllerImplWithUserAction() throws Exception { final List<ImeSubtypeListItem> enabledItems = createEnabledImeSubtypes(); final ImeSubtypeListItem latinIme_en_US = enabledItems.get(0); final ImeSubtypeListItem latinIme_fr = enabledItems.get(1); |