Home | History | Annotate | Download | only in widget

Lines Matching refs:mPopup

240     private ErrorPopup mPopup;
3271 if (mPopup != null) {
3272 if (mPopup.isShowing()) {
3273 mPopup.dismiss();
3276 mPopup = null;
3291 if (mPopup == null) {
3297 mPopup = new ErrorPopup(err, (int) (200 * scale + 0.5f),
3299 mPopup.setFocusable(false);
3302 mPopup.setInputMethodMode(PopupWindow.INPUT_METHOD_NEEDED);
3305 TextView tv = (TextView) mPopup.getContentView();
3306 chooseSize(mPopup, mError, tv);
3309 mPopup.showAsDropDown(this, getErrorX(), getErrorY());
3310 mPopup.fixDirection(mPopup.isAboveAnchor());
3355 return getWidth() - mPopup.getWidth()
3386 if (mPopup != null) {
3387 if (mPopup.isShowing()) {
3388 mPopup.dismiss();
3427 if (mPopup != null) {
3428 TextView tv = (TextView) mPopup.getContentView();
3429 chooseSize(mPopup, mError, tv);
3430 mPopup.update(this, getErrorX(), getErrorY(),
3431 mPopup.getWidth(), mPopup.getHeight());