Android PopupWindow and WRAP_CONTENT don't work together -
i open popu window this:
minfopopup = new popupwindow(layout, 400, 600, true); minfopopup.setwindowlayoutmode(viewgroup.layoutparams.wrap_content, viewgroup.layoutparams.wrap_content);
the window gets exact size specified (400x600) , not adjust size content. need change popup window wrap around contents?
simply changed way create by:
popupwindow popupmenu = new popupwindow(layout, viewgroup.layoutparams.wrap_content, viewgroup.layoutparams.wrap_content, true);
Comments
Post a Comment