Home | History | Annotate | Download | only in widget

Lines Matching refs:mPopup

103     private final ListPopupWindow mPopup;
259 mPopup = new ListPopupWindow(mPopupContext, attrs, defStyleAttr, defStyleRes);
260 mPopup.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
261 mPopup.setPromptPosition(ListPopupWindow.POSITION_PROMPT_BELOW);
262 mPopup.setListSelector(popupListSelector);
263 mPopup.setOnItemClickListener(new DropDownItemClickListener());
268 mPopup.setWidth(popupWidth);
269 mPopup.setHeight(popupHeight);
338 mPopup.setPromptView(hintView);
343 mPopup.setPromptView(null);
371 return mPopup.getWidth();
384 mPopup.setWidth(width);
398 return mPopup.getHeight();
412 mPopup.setHeight(height);
437 mPopup.setAnchorView(null);
448 return mPopup.getBackground();
459 mPopup.setBackgroundDrawable(d);
470 mPopup.setBackgroundDrawable(getContext().getDrawable(id));
481 mPopup.setVerticalOffset(offset);
492 return mPopup.getVerticalOffset();
503 mPopup.setHorizontalOffset(offset);
514 return mPopup.getHorizontalOffset();
530 mPopup.setAnimationStyle(animationStyle);
542 return mPopup.getAnimationStyle();
551 return mPopup.isDropDownAlwaysVisible();
568 mPopup.setDropDownAlwaysVisible(dropDownAlwaysVisible);
708 mPopup.setOnDismissListener(wrappedListener);
754 mPopup.setAdapter(mAdapter);
760 && !mPopup.isDropDownAlwaysVisible()) {
785 boolean consumed = mPopup.onKeyUp(keyCode, event);
811 if (mPopup.onKeyDown(keyCode, event)) {
898 if (!mPopup.isDropDownAlwaysVisible()) {
913 return mPopup.isShowing();
933 mPopup.clearListSelection();
942 mPopup.setSelection(position);
956 return mPopup.getSelectedItemPosition();
986 mPopup.performItemClick(completion.getPosition());
994 selectedItem = mPopup.getSelectedItem();
1008 final ListPopupWindow list = mPopup;
1019 if (mDropDownDismissedOnCompletion && !mPopup.isDropDownAlwaysVisible()) {
1080 final boolean dropDownAlwaysVisible = mPopup.isDropDownAlwaysVisible();
1098 if (!hasWindowFocus && !mPopup.isDropDownAlwaysVisible()) {
1108 if (!mPopup.isDropDownAlwaysVisible()) {
1128 if (!focused && !mPopup.isDropDownAlwaysVisible()) {
1152 mPopup.dismiss();
1173 mPopup.postShow();
1183 mPopup.setInputMethodMode(visible
1185 if (mPopup.isDropDownAlwaysVisible() || (mFilter != null && enoughToFilter())) {
1194 return mPopup.getInputMethodMode() == ListPopupWindow.INPUT_METHOD_NOT_NEEDED;
1203 if (mPopup.getAnchorView() == null) {
1205 mPopup.setAnchorView(getRootView().findViewById(mDropDownAnchorId));
1207 mPopup.setAnchorView(this);
1212 mPopup.setInputMethodMode(ListPopupWindow.INPUT_METHOD_NEEDED);
1213 mPopup.setListItemExpandMax(EXPAND_MAX);
1215 mPopup.show();
1216 mPopup.getListView().setOverScrollMode(View.OVER_SCROLL_ALWAYS);
1227 mPopup.setForceIgnoreOutsideTouch(forceIgnoreOutsideTouch);