Skip to content
This repository has been archived by the owner on Jun 3, 2021. It is now read-only.

Commit

Permalink
[WEEX-612][android] Fixed after input component default set a string …
Browse files Browse the repository at this point in the history
…on android platform, and then remove it, not trigger input event. (#1522)
  • Loading branch information
tody123 authored and YorkShen committed Nov 5, 2018
1 parent 69cd3e7 commit 77c9219
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,7 @@ public void beforeTextChanged(CharSequence s, int start, int count, int after) {
public void onTextChanged(CharSequence s, int start, int before, int count) {
if (mIgnoreNextOnInputEvent) {
mIgnoreNextOnInputEvent = false;
mBeforeText = s.toString();
return;
}

Expand Down

0 comments on commit 77c9219

Please sign in to comment.