2

我使用以下代码在 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()没有为我显示任何弹出窗口。

4

1 回答 1

0

它可能正在工作,但在可见窗口下方显示弹出窗口,因为它附加到 btnShowPopup 视图的左下角。

于 2012-09-18T06:11:24.703 回答