PopupView not showing up?

筅森魡賤 提交于 2019-12-04 10:38:14

问题


Here's the XML (just a webview):

<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/couponView" android:layout_height="100dp" android:layout_width="100dp" />

and the code:

final View cView = getLayoutInflater().inflate(R.layout.couponlayout, null);
PopupWindow pw = new PopupWindow(cView);
pw.showAtLocation(findViewById(R.id.mainLayout), Gravity.CENTER, 100, 100);
pw.update();

This is in a button.onClick() method. When I click the button, the rest of the things that should happen (button changes color, text, etc.), but the PopupWindow doesn't show up. I've been combing the web but can't find any fixes. What am I doing wrong?

edit: no one knows whats going on? I feel like this is a common problem.


回答1:


PopupWindow.setWindowLayoutMode(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);

NOTE: setWindowLayoutMode has been deprecated. Use setHeight and setWidth.




回答2:


The PopupWindow probably has a width and height of 0 since the dimensions weren't initialized, which would explain why you can't see anything. You can set the height and width with setHeight and setWidth, or do it with the constructor PopupWindow(View contentView, int width, int height).

Check the Android reference for more info.



来源:https://stackoverflow.com/questions/5504755/popupview-not-showing-up

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!