I have a PopupWindow that is populated with a LinearLayout. I instatiated my popup window like this:
PopupWindow pw = new PopupWindow(layout, 450, 700, true);
pw.showAsDropDown(layout, 80, 80);
However, when the device orientation is switched to landscape, the popup window gets cut off at the bottom and I cannot scroll down. See the screen capture:

The layout underneath this popup is indeed scrollable. So how can I make the popup scrollable?
Thanks,
Igor
LinearLayouts aren’t scrollable, so instead enclose the LinearLayout in a ScrollView.