Skip to content

Commit

Permalink
Merge pull request #4155 from hieupham007/timob-13542
Browse files Browse the repository at this point in the history
timob-13542: fix KB not showing up issue.
  • Loading branch information
pingwang2011 committed Apr 12, 2013
2 parents 99b2759 + 2ef51aa commit b63f7d4
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -779,11 +779,6 @@ public void run() {
});
fireEvent(TiC.EVENT_FOCUS, getFocusEventObject(hasFocus));
} else {
TiMessenger.postOnMain(new Runnable() {
public void run() {
TiUIHelper.showSoftKeyboard(v, false);
}
});
fireEvent(TiC.EVENT_BLUR, getFocusEventObject(hasFocus));
}
}
Expand Down Expand Up @@ -817,6 +812,11 @@ public void blur()
{
if (nativeView != null) {
nativeView.clearFocus();
TiMessenger.postOnMain(new Runnable() {
public void run() {
TiUIHelper.showSoftKeyboard(nativeView, false);
}
});
}
}

Expand Down

0 comments on commit b63f7d4

Please sign in to comment.