Remove an unused method (A55)
Change-Id: I9974b88923b85cd6bec74f7607067c660f36f040
This commit is contained in:
parent
c84f178cd9
commit
414f14436e
2 changed files with 0 additions and 30 deletions
|
@ -48,9 +48,7 @@ import android.util.Printer;
|
||||||
import android.view.KeyCharacterMap;
|
import android.view.KeyCharacterMap;
|
||||||
import android.view.KeyEvent;
|
import android.view.KeyEvent;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
|
||||||
import android.view.ViewGroup.LayoutParams;
|
import android.view.ViewGroup.LayoutParams;
|
||||||
import android.view.ViewParent;
|
|
||||||
import android.view.Window;
|
import android.view.Window;
|
||||||
import android.view.WindowManager;
|
import android.view.WindowManager;
|
||||||
import android.view.inputmethod.CompletionInfo;
|
import android.view.inputmethod.CompletionInfo;
|
||||||
|
@ -1646,27 +1644,6 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
||||||
return mCurrentSettings.isSuggestionsRequested(mDisplayOrientation);
|
return mCurrentSettings.isSuggestionsRequested(mDisplayOrientation);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void switchToKeyboardView() {
|
|
||||||
if (DEBUG) {
|
|
||||||
Log.d(TAG, "Switch to keyboard view.");
|
|
||||||
}
|
|
||||||
if (ProductionFlag.IS_EXPERIMENTAL) {
|
|
||||||
ResearchLogger.latinIME_switchToKeyboardView();
|
|
||||||
}
|
|
||||||
View v = mKeyboardSwitcher.getKeyboardView();
|
|
||||||
if (v != null) {
|
|
||||||
// Confirms that the keyboard view doesn't have parent view.
|
|
||||||
ViewParent p = v.getParent();
|
|
||||||
if (p != null && p instanceof ViewGroup) {
|
|
||||||
((ViewGroup) p).removeView(v);
|
|
||||||
}
|
|
||||||
setInputView(v);
|
|
||||||
}
|
|
||||||
setSuggestionStripShown(isSuggestionsStripVisible());
|
|
||||||
updateInputViewShown();
|
|
||||||
mHandler.postUpdateSuggestions();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void clearSuggestions() {
|
public void clearSuggestions() {
|
||||||
setSuggestions(SuggestedWords.EMPTY, false);
|
setSuggestions(SuggestedWords.EMPTY, false);
|
||||||
setAutoCorrectionIndicator(false);
|
setAutoCorrectionIndicator(false);
|
||||||
|
|
|
@ -933,13 +933,6 @@ public class ResearchLogger implements SharedPreferences.OnSharedPreferenceChang
|
||||||
EVENTKEYS_NULLVALUES);
|
EVENTKEYS_NULLVALUES);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final String[] EVENTKEYS_LATINIME_SWITCHTOKEYBOARDVIEW = {
|
|
||||||
"LatinIMESwitchToKeyboardView"
|
|
||||||
};
|
|
||||||
public static void latinIME_switchToKeyboardView() {
|
|
||||||
getInstance().enqueueEvent(EVENTKEYS_LATINIME_SWITCHTOKEYBOARDVIEW, EVENTKEYS_NULLVALUES);
|
|
||||||
}
|
|
||||||
|
|
||||||
private static final String[] EVENTKEYS_LATINKEYBOARDVIEW_ONLONGPRESS = {
|
private static final String[] EVENTKEYS_LATINKEYBOARDVIEW_ONLONGPRESS = {
|
||||||
"LatinKeyboardViewOnLongPress"
|
"LatinKeyboardViewOnLongPress"
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue