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

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -