am 33587f91: am 9c6e7e23: am b0c5ddb9: Merge "Stop vibration while repeating delete key in emoji view"
* commit '33587f919ef19d89296491a3d0e746b610838828': Stop vibration while repeating delete key in emoji viewmain
commit
9442c3f390
|
@ -718,12 +718,14 @@ public final class EmojiKeyboardView extends LinearLayout implements OnTabChange
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
|
int repeatCount = 1;
|
||||||
int timeCount = 0;
|
int timeCount = 0;
|
||||||
while (timeCount < MAX_REPEAT_COUNT_TIME && !mAborted) {
|
while (timeCount < MAX_REPEAT_COUNT_TIME && !mAborted) {
|
||||||
if (timeCount > mKeyRepeatStartTimeout) {
|
if (timeCount > mKeyRepeatStartTimeout) {
|
||||||
pressDelete();
|
pressDelete(repeatCount);
|
||||||
}
|
}
|
||||||
timeCount += mKeyRepeatInterval;
|
timeCount += mKeyRepeatInterval;
|
||||||
|
++repeatCount;
|
||||||
try {
|
try {
|
||||||
Thread.sleep(mKeyRepeatInterval);
|
Thread.sleep(mKeyRepeatInterval);
|
||||||
} catch (InterruptedException e) {
|
} catch (InterruptedException e) {
|
||||||
|
@ -736,9 +738,9 @@ public final class EmojiKeyboardView extends LinearLayout implements OnTabChange
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void pressDelete() {
|
public void pressDelete(int repeatCount) {
|
||||||
mKeyboardActionListener.onPressKey(
|
mKeyboardActionListener.onPressKey(
|
||||||
Constants.CODE_DELETE, 0 /* repeatCount */, true /* isSinglePointer */);
|
Constants.CODE_DELETE, repeatCount, true /* isSinglePointer */);
|
||||||
mKeyboardActionListener.onCodeInput(
|
mKeyboardActionListener.onCodeInput(
|
||||||
Constants.CODE_DELETE, NOT_A_COORDINATE, NOT_A_COORDINATE);
|
Constants.CODE_DELETE, NOT_A_COORDINATE, NOT_A_COORDINATE);
|
||||||
mKeyboardActionListener.onReleaseKey(
|
mKeyboardActionListener.onReleaseKey(
|
||||||
|
@ -754,7 +756,7 @@ public final class EmojiKeyboardView extends LinearLayout implements OnTabChange
|
||||||
switch(event.getAction()) {
|
switch(event.getAction()) {
|
||||||
case MotionEvent.ACTION_DOWN:
|
case MotionEvent.ACTION_DOWN:
|
||||||
v.setBackgroundColor(mDeleteKeyPressedBackgroundColor);
|
v.setBackgroundColor(mDeleteKeyPressedBackgroundColor);
|
||||||
pressDelete();
|
pressDelete(0 /* repeatCount */);
|
||||||
startRepeat();
|
startRepeat();
|
||||||
return true;
|
return true;
|
||||||
case MotionEvent.ACTION_UP:
|
case MotionEvent.ACTION_UP:
|
||||||
|
|
Loading…
Reference in New Issue