我PopupWindow
用一个简单LinearLayout
的背景颜色创建了我的。上面有阴影PopupWindow
。如何删除为PopupWindow
. 我创建了PopupWindow
以下内容:
View view = LayoutInflater.from(getBaseContext()).inflate(R.layout.mylayout,null);
pop = new PopupWindow(this);
pop.setTouchable(false);
pop.setHeight(200);
pop.setWidth(200);
pop.setContentView(view);
pop.showAtLocation(parentview, 0, 50, 50);
截屏: