Home
last modified time | relevance | path

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

/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
DListPopupWindow.java964 View hintView = mPromptView; in buildDropDown() local
965 if (hintView != null) { in buildDropDown()
978 hintContainer.addView(hintView); in buildDropDown()
982 hintContainer.addView(hintView); in buildDropDown()
995 hintView.measure(widthSpec, heightSpec); in buildDropDown()
997 hintParams = (LinearLayout.LayoutParams) hintView.getLayoutParams(); in buildDropDown()
998 otherHeights = hintView.getMeasuredHeight() + hintParams.topMargin in buildDropDown()
/frameworks/base/core/java/android/widget/
DListPopupWindow.java1070 View hintView = mPromptView;
1071 if (hintView != null) {
1084 hintContainer.addView(hintView);
1088 hintContainer.addView(hintView);
1101 hintView.measure(widthSpec, heightSpec);
1103 hintParams = (LinearLayout.LayoutParams) hintView.getLayoutParams();
1104 otherHeights = hintView.getMeasuredHeight() + hintParams.topMargin
DAutoCompleteTextView.java229 final TextView hintView = (TextView) LayoutInflater.from(getContext()).inflate( in setCompletionHint() local
231 hintView.setText(mHintText); in setCompletionHint()
232 mHintView = hintView; in setCompletionHint()
233 mPopup.setPromptView(hintView); in setCompletionHint()