Lines Matching refs:mPopup

105     private ListPopupWindow mPopup;
144 mPopup = new ListPopupWindow(context, attrs, defStyleAttr, defStyleRes);
145 mPopup.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
146 mPopup.setPromptPosition(ListPopupWindow.POSITION_PROMPT_BELOW);
153 mPopup.setListSelector(a.getDrawable(R.styleable.AutoCompleteTextView_dropDownSelector));
164 mPopup.setWidth(a.getLayoutDimension(R.styleable.AutoCompleteTextView_dropDownWidth,
166 mPopup.setHeight(a.getLayoutDimension(R.styleable.AutoCompleteTextView_dropDownHeight,
172 mPopup.setOnItemClickListener(new DropDownItemClickListener());
229 mPopup.setPromptView(hintView);
234 mPopup.setPromptView(null);
262 return mPopup.getWidth();
275 mPopup.setWidth(width);
289 return mPopup.getHeight();
303 mPopup.setHeight(height);
328 mPopup.setAnchorView(null);
339 return mPopup.getBackground();
350 mPopup.setBackgroundDrawable(d);
361 mPopup.setBackgroundDrawable(getContext().getDrawable(id));
372 mPopup.setVerticalOffset(offset);
383 return mPopup.getVerticalOffset();
394 mPopup.setHorizontalOffset(offset);
405 return mPopup.getHorizontalOffset();
421 mPopup.setAnimationStyle(animationStyle);
433 return mPopup.getAnimationStyle();
442 return mPopup.isDropDownAlwaysVisible();
459 mPopup.setDropDownAlwaysVisible(dropDownAlwaysVisible);
599 mPopup.setOnDismissListener(wrappedListener);
645 mPopup.setAdapter(mAdapter);
651 && !mPopup.isDropDownAlwaysVisible()) {
676 boolean consumed = mPopup.onKeyUp(keyCode, event);
702 if (mPopup.onKeyDown(keyCode, event)) {
789 if (!mPopup.isDropDownAlwaysVisible()) {
804 return mPopup.isShowing();
824 mPopup.clearListSelection();
833 mPopup.setSelection(position);
847 return mPopup.getSelectedItemPosition();
877 mPopup.performItemClick(completion.getPosition());
885 selectedItem = mPopup.getSelectedItem();
899 final ListPopupWindow list = mPopup;
910 if (mDropDownDismissedOnCompletion && !mPopup.isDropDownAlwaysVisible()) {
971 final boolean dropDownAlwaysVisible = mPopup.isDropDownAlwaysVisible();
989 if (!hasWindowFocus && !mPopup.isDropDownAlwaysVisible()) {
999 if (!mPopup.isDropDownAlwaysVisible()) {
1019 if (!focused && !mPopup.isDropDownAlwaysVisible()) {
1043 mPopup.dismiss();
1064 mPopup.postShow();
1074 mPopup.setInputMethodMode(visible
1076 if (mPopup.isDropDownAlwaysVisible() || (mFilter != null && enoughToFilter())) {
1085 return mPopup.getInputMethodMode() == ListPopupWindow.INPUT_METHOD_NOT_NEEDED;
1094 if (mPopup.getAnchorView() == null) {
1096 mPopup.setAnchorView(getRootView().findViewById(mDropDownAnchorId));
1098 mPopup.setAnchorView(this);
1103 mPopup.setInputMethodMode(ListPopupWindow.INPUT_METHOD_NEEDED);
1104 mPopup.setListItemExpandMax(EXPAND_MAX);
1106 mPopup.show();
1107 mPopup.getListView().setOverScrollMode(View.OVER_SCROLL_ALWAYS);
1118 mPopup.setForceIgnoreOutsideTouch(forceIgnoreOutsideTouch);