重新充气时出现错误

发布于 2024-11-30 12:42:37 字数 266 浏览 2 评论 0原文

我正在尝试在单击按钮时膨胀视图存根。第一次按下按钮时它工作正常,但是当我第二次按下按钮时应用程序崩溃了。

我正在使用以下代码

 public void display(View V)  //Button Click
    {
         stub=(ViewStub) findViewById(R.id.stub);
         inflated=stub.inflate();

    }

有人可以给我一些帮助吗?

I am trying to inflate view stub on Button click. It works fine when the button is pressed for the first time, but when I press the button a second time the application crashes.

I am Using the following code

 public void display(View V)  //Button Click
    {
         stub=(ViewStub) findViewById(R.id.stub);
         inflated=stub.inflate();

    }

Can anyone give me some help on this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜血缘 2024-12-07 12:42:37

您可以添加以下检查以避免多次尝试膨胀 ViewStub

if(stub.getParent() != null) {
    inflated = stub.inflate();
}

迟到的回答,但也许会对某人有所帮助:)

You can add the following check to avoid trying to inflate the ViewStub several times:

if(stub.getParent() != null) {
    inflated = stub.inflate();
}

Late answer, but maybe it will help someone :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文