meeeee
meeeee

Reputation: 2939

Android PopupWindow showAsDropDown() not working properly

I am using PopupWindow with showAsDropDown(anchor). When the anchor is at the top of the screen it works fine, but when at the bottom of the screen nothing shows up. According to the documentation for PopupWindow.showAsDropDown() this should work:

http://developer.android.com/reference/android/widget/PopupWindow.html#showAsDropDown%28android.view.View%29

"Display the content view in a popup window anchored to the bottom-left corner of the anchor view. If there is not enough room on screen to show the popup in its entirety, this method tries to find a parent scroll view to scroll. If no parent scroll view can be scrolled, the bottom-left corner of the popup is pinned at the top left corner of the anchor view."

Presumably, the popup is always anchored to the bottom-left corner of the anchor view. How do I fix this?

Upvotes: 16

Views: 8461

Answers (2)

btschumy
btschumy

Reputation: 1463

I know this is an old thread, but I thought I'd post my solution. It looks like you have to explicitly set the width and height of the popupWindow before calling showAsDropDown().

    menuLayout.measure( View.MeasureSpec.UNSPECIFIED, 
                        View.MeasureSpec.UNSPECIFIED );
    int height = menuLayout.getMeasuredHeight();
    int width = menuLayout.getMeasuredWidth();
    popupMenu.setWidth( width );
    popupMenu.setHeight( height );

    popupMenu.showAsDropDown( clickedCell );

In this case menuLayout is the view displayed in the popupWindow.

Upvotes: 0

GOLDEE
GOLDEE

Reputation: 2318

You can try this .. may be it helps

mWindow.showAtLocation(mRootView, Gravity.BOTTOM|Gravity.LEFT, 0, distanceFromTop);

Upvotes: 4

Related Questions