Merge change 21153

* changes:
  Increase search radius for adjacent keys, to reduce unpredictability of suggestions.
This commit is contained in:
Android (Google) Code Review
2009-08-13 13:02:56 -07:00

View File

@@ -142,7 +142,7 @@ public class Keyboard {
private int[][] mGridNeighbors;
private int mProximityThreshold;
/** Number of key widths from current touch point to search for nearest keys. */
private static float SEARCH_DISTANCE = 1.4f;
private static float SEARCH_DISTANCE = 1.8f;
/**
* Container for keys in the keyboard. All keys in a row are at the same Y-coordinate.