0

about ListPopupWindow

ListPopupWindow is different than PopupWindow. i have tried all the solution to dismiss the showing window. i have tried .dismiss but it is not dismiss first time when user click second time then only it is dismissed.

also ListPopupWindow not support setCancelable(true) or setOutsideTouchable(false) like method to dismiss window when user touch on outside of the window. or press back button.

Nikul Vaghani
  • 21
  • 1
  • 1
  • Hi Nikul ,please share you code – Avinash tiwari Dec 10 '19 at 05:48
  • hello, @Avinashtiwari i have used [this link](https://stackoverflow.com/a/46191914/10573140). difference between this link and on my code is only that i'm used image to the right side of the text item. and i want image to the right side of the text. that's why i'm used **ListPopupWindow** otherwise i knew we can set image using this code ` – Nikul Vaghani Dec 10 '19 at 06:01

1 Answers1

0

try popupWindow.setModal(true).

See https://developer.android.com/reference/android/widget/ListPopupWindow.html#setModal(boolean)

Christilyn Arjona
  • 2,173
  • 3
  • 13
  • 20