diff options
author | 2011-05-23 18:30:21 +0900 | |
---|---|---|
committer | 2011-05-24 15:37:53 +0900 | |
commit | c150acc7c85ff2f5eeb5bd2c6ff288df4e46a355 (patch) | |
tree | 144c1dac0295c005c1d80ce3af62e9665045b89f /java/src/com/android/inputmethod/deprecated/VoiceProxy.java | |
parent | 8c08a49895ee53b798f72190e8fc642f8686b8ef (diff) | |
download | latinime-c150acc7c85ff2f5eeb5bd2c6ff288df4e46a355.tar.gz latinime-c150acc7c85ff2f5eeb5bd2c6ff288df4e46a355.tar.xz latinime-c150acc7c85ff2f5eeb5bd2c6ff288df4e46a355.zip |
Move CandidateView into input view
Bug: 4175031
Change-Id: I95f379b9943d1dcab1dc5527b6e5ac5abd58e280
Diffstat (limited to 'java/src/com/android/inputmethod/deprecated/VoiceProxy.java')
-rw-r--r-- | java/src/com/android/inputmethod/deprecated/VoiceProxy.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/deprecated/VoiceProxy.java b/java/src/com/android/inputmethod/deprecated/VoiceProxy.java index 7ea4165ba..85993ea4d 100644 --- a/java/src/com/android/inputmethod/deprecated/VoiceProxy.java +++ b/java/src/com/android/inputmethod/deprecated/VoiceProxy.java @@ -536,7 +536,7 @@ public class VoiceProxy implements VoiceInput.UiListener { ((ViewGroup) p).removeView(v); } - View keyboardView = KeyboardSwitcher.getInstance().getInputView(); + View keyboardView = KeyboardSwitcher.getInstance().getKeyboardView(); // The full height of the keyboard is difficult to calculate // as the dimension is expressed in "mm" and not in "pixel" @@ -691,7 +691,7 @@ public class VoiceProxy implements VoiceInput.UiListener { if (mSubtypeSwitcher.isVoiceMode() && windowToken != null) { // Close keyboard view if it is been shown. if (KeyboardSwitcher.getInstance().isInputViewShown()) - KeyboardSwitcher.getInstance().getInputView().purgeKeyboardAndClosing(); + KeyboardSwitcher.getInstance().getKeyboardView().purgeKeyboardAndClosing(); startListening(false, windowToken); } // If we have no token, onAttachedToWindow will take care of showing dialog and start |