popwindow低版本兼容问题
更新:HHH   时间:2023-1-7


android 2.3 popwindow NullPointerException的解决

构造函数里添加

super(context)

例如:

public MyPopupWindow(Activity context, int width, int height){
super(context);

}


返回开发技术教程...