Home
last modified time | relevance | path

Searched refs:ListPopupWindow (Results 1 – 25 of 32) sorted by relevance

12

/aosp12/packages/apps/Contacts/src/com/android/contacts/editor/
H A DPhotoActionPopup.java25 import android.widget.ListPopupWindow;
97 public static ListPopupWindow createPopupMenu(Context context, View anchorView, in createPopupMenu()
104 final ListPopupWindow listPopupWindow = new ListPopupWindow(context); in createPopupMenu()
129 listPopupWindow.setInputMethodMode(ListPopupWindow.INPUT_METHOD_NOT_NEEDED); in createPopupMenu()
H A DAccountHeaderPresenter.java25 import android.widget.ListPopupWindow;
176 final ListPopupWindow popup = new ListPopupWindow(mContext); in showPopup()
183 popup.setInputMethodMode(ListPopupWindow.INPUT_METHOD_NOT_NEEDED); in showPopup()
H A DGroupMembershipView.java36 import android.widget.ListPopupWindow;
161 private ListPopupWindow mPopup;
378 mPopup = new ListPopupWindow(getContext(), null); in onClick()
382 mPopup.setInputMethodMode(ListPopupWindow.INPUT_METHOD_NOT_NEEDED); in onClick()
H A DRawContactEditorView.java50 import android.widget.ListPopupWindow;
812 final ListPopupWindow popup = new ListPopupWindow(getContext(), null); in addAccountSelector()
819 popup.setInputMethodMode(ListPopupWindow.INPUT_METHOD_NOT_NEEDED); in addAccountSelector()
H A DContactEditorFragment.java59 import android.widget.ListPopupWindow;
323 protected ListPopupWindow mAggregationSuggestionPopup;
1617 mAggregationSuggestionPopup = new ListPopupWindow(mContext, null); in onAggregationSuggestionChange()
1620 mAggregationSuggestionPopup.setInputMethodMode(ListPopupWindow.INPUT_METHOD_NOT_NEEDED); in onAggregationSuggestionChange()
/aosp12/packages/apps/Contacts/src/com/android/contacts/util/
H A DUiClosables.java19 import android.widget.ListPopupWindow;
32 public static boolean closeQuietly(ListPopupWindow popup) { in closeQuietly()
/aosp12/frameworks/base/core/java/android/widget/
H A DAutoCompleteTextView.java111 private final ListPopupWindow mPopup;
274 mPopup = new ListPopupWindow(mPopupContext, attrs, defStyleAttr, defStyleRes); in AutoCompleteTextView()
276 mPopup.setPromptPosition(ListPopupWindow.POSITION_PROMPT_BELOW); in AutoCompleteTextView()
1064 final ListPopupWindow list = mPopup; in performCompletion()
1249 ? ListPopupWindow.INPUT_METHOD_NEEDED : ListPopupWindow.INPUT_METHOD_NOT_NEEDED); in ensureImeVisible()
1262 return mPopup.getInputMethodMode() == ListPopupWindow.INPUT_METHOD_NOT_NEEDED; in isInputMethodNotNeeded()
1270 @IntDef({ListPopupWindow.INPUT_METHOD_FROM_FOCUSABLE,
1271 ListPopupWindow.INPUT_METHOD_NEEDED,
1272 ListPopupWindow.INPUT_METHOD_NOT_NEEDED})
1314 mPopup.setInputMethodMode(ListPopupWindow.INPUT_METHOD_NEEDED); in showDropDown()
H A DListPopupWindow.java61 public class ListPopupWindow implements ShowableListMenu { class
187 public ListPopupWindow(@NonNull Context context) { in ListPopupWindow() method in ListPopupWindow
198 public ListPopupWindow(@NonNull Context context, @Nullable AttributeSet attrs) { in ListPopupWindow() method in ListPopupWindow
210 public ListPopupWindow(@NonNull Context context, @Nullable AttributeSet attrs, in ListPopupWindow() method in ListPopupWindow
224 public ListPopupWindow(@NonNull Context context, @Nullable AttributeSet attrs, in ListPopupWindow() method in ListPopupWindow
229 final TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.ListPopupWindow, in ListPopupWindow()
1122 return ListPopupWindow.this; in createDragToOpenListener()
H A DActivityChooserView.java158 private ListPopupWindow mListPopupWindow;
397 ListPopupWindow popupWindow = getListPopupWindow(); in showPopupUnchecked()
534 private ListPopupWindow getListPopupWindow() { in getListPopupWindow()
536 mListPopupWindow = new ListPopupWindow(getContext()); in getListPopupWindow()
H A DMenuPopupWindow.java42 public class MenuPopupWindow extends ListPopupWindow implements MenuItemHoverListener {
H A DSpinner.java1188 private class DropdownPopup extends ListPopupWindow implements SpinnerPopup {
1268 setInputMethodMode(ListPopupWindow.INPUT_METHOD_NOT_NEEDED); in show()
/aosp12/packages/apps/Car/tests/RotaryPlayground/src/com/android/car/rotaryplayground/
H A DPopupWindowFragment.java26 import android.widget.ListPopupWindow;
44 private ListPopupWindow mPopupWindow;
54 mPopupWindow = new ListPopupWindow(getActivity()); in onCreateView()
/aosp12/packages/apps/QuickAccessWallet/src/com/android/systemui/plugin/globalactions/wallet/
H A DWalletPopupMenu.java28 import android.widget.ListPopupWindow;
35 class WalletPopupMenu extends ListPopupWindow {
H A DWalletView.java36 import android.widget.ListPopupWindow;
245 ListPopupWindow getOverflowPopup() { in getOverflowPopup()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/
H A DGlobalActionsPopupMenu.java27 import android.widget.ListPopupWindow;
38 public class GlobalActionsPopupMenu extends ListPopupWindow {
H A DGlobalActionsDialogLite.java89 import android.widget.ListPopupWindow;
2165 private ListPopupWindow mOverflowPopup;
2285 private ListPopupWindow createPowerOverflowPopup() {
/aosp12/packages/apps/EmergencyInfo/src/com/android/emergency/preferences/
H A DEditUserPhotoController.java50 import android.widget.ListPopupWindow;
191 final ListPopupWindow listPopupWindow = new ListPopupWindow(context); in showUpdatePhotoPopup()
195 listPopupWindow.setInputMethodMode(ListPopupWindow.INPUT_METHOD_NOT_NEEDED); in showUpdatePhotoPopup()
/aosp12/frameworks/base/packages/SettingsLib/src/com/android/settingslib/users/
H A DEditUserPhotoController.java50 import android.widget.ListPopupWindow;
190 final ListPopupWindow listPopupWindow = new ListPopupWindow(context); in showUpdatePhotoPopup()
194 listPopupWindow.setInputMethodMode(ListPopupWindow.INPUT_METHOD_NOT_NEEDED); in showUpdatePhotoPopup()
/aosp12/packages/apps/Contacts/src/com/android/contacts/detail/
H A DPhotoSelectionHandler.java35 import android.widget.ListPopupWindow;
78 private ListPopupWindow mPopup;
/aosp12/packages/apps/QuickAccessWallet/tests/robolectric/src/com/android/systemui/plugin/globalactions/wallet/
H A DWalletPanelViewControllerTest.java55 import android.widget.ListPopupWindow;
334 ListPopupWindow popupWindow = walletView.getOverflowPopup(); in onWalletCardsRetrieved_showsOverflowButton_startWalletActivity()
363 ListPopupWindow popupWindow = walletView.getOverflowPopup(); in onWalletCardsRetrieved_noShortLabel_showsOnlySettingsInOverflowMenu()
391 ListPopupWindow popupWindow = walletView.getOverflowPopup(); in onWalletCardsRetrieved_noWalletIntent_showsOnlySettingsInOverflowMenu()
/aosp12/frameworks/base/core/java/android/app/
H A DSearchDialog.java53 import android.widget.ListPopupWindow;
375 mSearchAutoComplete.setInputMethodMode(ListPopupWindow.INPUT_METHOD_NEEDED); in onConfigurationChanged()
/aosp12/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java88 import android.widget.ListPopupWindow;
178 private ListPopupWindow mAlternatesPopup;
179 private ListPopupWindow mAddressPopup;
342 mAlternatesPopup = new ListPopupWindow(context); in RecipientEditTextView()
344 mAddressPopup = new ListPopupWindow(context); in RecipientEditTextView()
369 ((ListPopupWindow) msg.obj).dismiss(); in RecipientEditTextView()
383 private void setupPopupWindow(ListPopupWindow popup) { in setupPopupWindow()
2027 final ListPopupWindow alternatesPopup) { in showAlternates()
2606 private void showAddress(final DrawableRecipientChip currentChip, final ListPopupWindow popup) { in showAddress()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ui/
H A DControlsUiControllerImpl.kt44 import android.widget.ListPopupWindow
109 private var popup: ListPopupWindow? = null
/aosp12/packages/apps/Car/SystemUI/src/com/android/systemui/car/statusicon/
H A DStatusIconPanelController.java21 import static android.widget.ListPopupWindow.WRAP_CONTENT;
/aosp12/frameworks/base/boot/
H A Dpreloaded-classes8280 android.widget.ListPopupWindow$ListSelectorHider
8281 android.widget.ListPopupWindow$PopupDataSetObserver
8282 android.widget.ListPopupWindow$PopupScrollListener
8283 android.widget.ListPopupWindow$PopupTouchInterceptor
8284 android.widget.ListPopupWindow$ResizePopupRunnable
8285 android.widget.ListPopupWindow

12