Home
last modified time | relevance | path

Searched refs:mErrorPopup (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/widget/
DEditor.java208 ErrorPopup mErrorPopup; field in Editor
451 if (mErrorPopup == null) { in showError()
457 mErrorPopup = new ErrorPopup(err, (int)(200 * scale + 0.5f), (int)(50 * scale + 0.5f)); in showError()
458 mErrorPopup.setFocusable(false); in showError()
461 mErrorPopup.setInputMethodMode(PopupWindow.INPUT_METHOD_NEEDED); in showError()
464 TextView tv = (TextView) mErrorPopup.getContentView(); in showError()
465 chooseSize(mErrorPopup, mError, tv); in showError()
468 mErrorPopup.showAsDropDown(mTextView, getErrorX(), getErrorY()); in showError()
469 mErrorPopup.fixDirection(mErrorPopup.isAboveAnchor()); in showError()
478 if (mErrorPopup != null) { in setError()
[all …]