am 9fc38f40: am d247aadf: Bring up the soft keyboard when touching a focused textfield.

Merge commit '9fc38f40feb871bd51309244984b1d13bdc5b9aa'

* commit '9fc38f40feb871bd51309244984b1d13bdc5b9aa':
  Bring up the soft keyboard when touching a focused textfield.
This commit is contained in:
Leon Scroggins
2009-09-16 23:54:42 -07:00
committed by Android Git Automerger

View File

@@ -4885,6 +4885,9 @@ public class WebView extends AbsoluteLayout
}
int x = viewToContentX((int) event.getX() + mWebTextView.getLeft());
int y = viewToContentY((int) event.getY() + mWebTextView.getTop());
// In case the soft keyboard has been dismissed, bring it back up.
InputMethodManager.getInstance(getContext()).showSoftInput(mWebTextView,
0);
nativeTextInputMotionUp(x, y);
}