我使用以下代码在android中显示PopupWindow,我想将弹出窗口固定到Button上,
btnShowPopup = (Button)findViewById(R.id.btnShowPopup);
btnShowPopup.setOnClickListener(this);
@Override
public void onClick(View v) {
if(v == btnShowPopup){
View popupViw = getLayoutInflater().inflate(R.layout.popup_demo, null);
PopupWindow popup = new PopupWindow(this);
popup.setContentView(popupViw);
popup.showAsDropDown(btnShowPopup,10,10);
//popup.showAtLocation(popupViw, Gravity.BOTTOM, 10, 10);
}
}
在这种情况下,popup.showAtLocation()
运行良好,但popup.showAsDropDown()
没有为我显示任何弹出窗口。
答案 0 :(得分:0)
它可能正常工作,但在可见窗口下方显示弹出窗口,因为它附加到btnShowPopup视图的左下角。