am e5abf25d: am 83e63ace: Dismiss mini keyboard when finger is released outside mini keyboard
Merge commit 'e5abf25d4b57ecdfc01ca3ddf94753d5bcb07fea' * commit 'e5abf25d4b57ecdfc01ca3ddf94753d5bcb07fea': Dismiss mini keyboard when finger is released outside mini keyboardmain
commit
ca43ce0588
|
@ -1212,6 +1212,10 @@ public class LatinIME extends InputMethodService
|
|||
mEnteredText = text;
|
||||
}
|
||||
|
||||
public void onCancel() {
|
||||
// User released a finger outside any key
|
||||
}
|
||||
|
||||
private void handleBackspace() {
|
||||
if (VOICE_INSTALLED && mVoiceInputHighlighted) {
|
||||
mVoiceInput.incrementTextModificationDeleteCount(
|
||||
|
|
|
@ -123,6 +123,11 @@ public class LatinKeyboardBaseView extends View implements PointerTracker.UIProx
|
|||
*/
|
||||
void onText(CharSequence text);
|
||||
|
||||
/**
|
||||
* Called when user released a finger outside any key.
|
||||
*/
|
||||
void onCancel();
|
||||
|
||||
/**
|
||||
* Called when the user quickly moves the finger from right to
|
||||
* left.
|
||||
|
@ -1005,6 +1010,10 @@ public class LatinKeyboardBaseView extends View implements PointerTracker.UIProx
|
|||
dismissPopupKeyboard();
|
||||
}
|
||||
|
||||
public void onCancel() {
|
||||
dismissPopupKeyboard();
|
||||
}
|
||||
|
||||
public void swipeLeft() {
|
||||
}
|
||||
public void swipeRight() {
|
||||
|
|
|
@ -389,9 +389,13 @@ public class PointerTracker {
|
|||
}
|
||||
|
||||
private void detectAndSendKey(int index, int x, int y, long eventTime) {
|
||||
if (isValidKeyIndex(index)) {
|
||||
final Key key = mKeys[index];
|
||||
OnKeyboardActionListener listener = mListener;
|
||||
final OnKeyboardActionListener listener = mListener;
|
||||
final Key key = getKey(index);
|
||||
|
||||
if (key == null) {
|
||||
if (listener != null)
|
||||
listener.onCancel();
|
||||
} else {
|
||||
if (key.text != null) {
|
||||
if (listener != null) {
|
||||
listener.onText(key.text);
|
||||
|
|
Loading…
Reference in New Issue