Search code examples
androidpopupwindowsamsung-mobileandroid-4.3-jelly-bean

Unable to select item from Popup window listing - android


I am using PopupWindow for selecting city. I am able to select(click) item in Marshmallow but not able to select in JellyBean 4.3 (Samsung Galaxy S3)

Anybody know?


Solution

  • Just add one line.

    popupWindow.setFocusable(true);
    

    It solves your problem.Enjoy :)