Zach Klippenstein (he/him) [MOD]
02/22/2020, 10:49 PMDropdownPopup
to create a simple Spinner control. I’ve passed PopupProperties
with isFocusable = true
, and the popup shows, but none of the children of the popup seem to be getting any click events and clicking outside the popup neither dismisses it nor sends click events to the underlying window. If I use Dialog
instead of the popup, everything works as expected. Are popups broken?Ian Warwick
02/22/2020, 11:27 PMDropDownPopup
in quite a few places in my little playground app though I extended it a bit for items https://github.com/fluxtah/memset/blob/ff8268c54001260117850dc47282319b89662914/ui-shared/src/main/java/com/citizenwarwick/ui/widgets/DropDownMenu.ktCardDropDownMenu
PopupProperties
for me when I use it it works for a while but then starts failing, popup shows and nothing else is clickableZach Klippenstein (he/him) [MOD]
02/24/2020, 6:02 PMIan Warwick
02/25/2020, 8:49 AMPopupProperties
🤔Gerardo Rodriguez
12/21/2022, 9:51 PMoverride fun onTouchEvent(event: MotionEvent): Boolean {
This always gives me “false”
val result = super.onTouchEvent(event)
Everytime I’m touching outside the dialog, so it “onDismissRequest” is never called