Skip to content

Commit

Permalink
Merge pull request #4158 from hieupham007/timob-13542-3_1_X
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 b694b43 + dae3c87 commit 23d3fbe
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 23d3fbe

Please sign in to comment.