gpt4 book ai didi

Android弹出窗体强制关闭

转载 作者:行者123 更新时间:2023-11-30 03:09:59 25 4
gpt4 key购买 nike

我正在使用 android。我曾经在 xml 中创建一个 poupup 表单,通过单击邮件 xml 文件上的按钮弹出。但它强制关闭应用程序。我的代码没有错误。我无法找出我的错误。这是我的代码:

 imageButton2.setOnClickListener(new OnClickListener() {


public void onClick(View v) {
View popUpView = getLayoutInflater().inflate(R.layout.popup, null); // inflating popup layout
mpopup = new PopupWindow(popUpView, LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT, true); //Creation of popup

mpopup.showAtLocation(popUpView, Gravity.BOTTOM, 0, 0); // Displaying popup
ImageButton Sub = (ImageButton) findViewById(R.id.submit);
Sub.setOnClickListener(new OnClickListener() {


public void onClick(View v) {
mpopup.dismiss();

}
});
}
});

最佳答案

替换这个:

 ImageButton Sub = (ImageButton) findViewById(R.id.submit);    

如下:

 ImageButton Sub = (ImageButton) popUpView.findViewById(R.id.submit);    

如果我没看错,那就试试这个。

关于Android弹出窗体强制关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21131541/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com