Remove unused setProximityCorrectionEnabled() methods
Change-Id: I03aa6608ee435b36377de41684162b303740f571main
parent
e68385871a
commit
c4376db0f0
|
@ -25,7 +25,6 @@ public class KeyDetector {
|
||||||
private Keyboard mKeyboard;
|
private Keyboard mKeyboard;
|
||||||
private int mCorrectionX;
|
private int mCorrectionX;
|
||||||
private int mCorrectionY;
|
private int mCorrectionY;
|
||||||
private boolean mProximityCorrectOn;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class handles key detection.
|
* This class handles key detection.
|
||||||
|
@ -64,14 +63,6 @@ public class KeyDetector {
|
||||||
return mKeyboard;
|
return mKeyboard;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setProximityCorrectionEnabled(boolean enabled) {
|
|
||||||
mProximityCorrectOn = enabled;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isProximityCorrectionEnabled() {
|
|
||||||
return mProximityCorrectOn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean alwaysAllowsSlidingInput() {
|
public boolean alwaysAllowsSlidingInput() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -497,23 +497,6 @@ public class MainKeyboardView extends KeyboardView implements PointerTracker.Key
|
||||||
mHasDistinctMultitouch = hasDistinctMultitouch;
|
mHasDistinctMultitouch = hasDistinctMultitouch;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* When enabled, calls to {@link KeyboardActionListener#onCodeInput} will include key
|
|
||||||
* codes for adjacent keys. When disabled, only the primary key code will be
|
|
||||||
* reported.
|
|
||||||
* @param enabled whether or not the proximity correction is enabled
|
|
||||||
*/
|
|
||||||
public void setProximityCorrectionEnabled(boolean enabled) {
|
|
||||||
mKeyDetector.setProximityCorrectionEnabled(enabled);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns true if proximity correction is enabled.
|
|
||||||
*/
|
|
||||||
public boolean isProximityCorrectionEnabled() {
|
|
||||||
return mKeyDetector.isProximityCorrectionEnabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onAttachedToWindow() {
|
protected void onAttachedToWindow() {
|
||||||
super.onAttachedToWindow();
|
super.onAttachedToWindow();
|
||||||
|
|
|
@ -693,7 +693,6 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
||||||
|
|
||||||
inputView.setKeyPreviewPopupEnabled(mCurrentSettings.mKeyPreviewPopupOn,
|
inputView.setKeyPreviewPopupEnabled(mCurrentSettings.mKeyPreviewPopupOn,
|
||||||
mCurrentSettings.mKeyPreviewPopupDismissDelay);
|
mCurrentSettings.mKeyPreviewPopupDismissDelay);
|
||||||
inputView.setProximityCorrectionEnabled(true);
|
|
||||||
|
|
||||||
if (TRACE) Debug.startMethodTracing("/data/trace/latinime");
|
if (TRACE) Debug.startMethodTracing("/data/trace/latinime");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue