gpt4 book ai didi

java - 在 xml 文件上添加除 main 之外的按钮

转载 作者:行者123 更新时间:2023-12-02 00:42:28 24 4
gpt4 key购买 nike

我的应用程序中有两个 xml 文件 - ma​​in.xmloptions.xml

在这两个中我都使用按钮。问题是,在与 ma​​in.xml 中的按钮交互时,我无法使用 options.xml 进行交互:如果我写

Button b = (Button)findViewById(R.id.b1);

, b 将为空。此问题的原因是什么?如何解决?

提前谢谢您。

最佳答案

您需要扩充 options.xml 或将其设置为内容 View :

setContentView(R.layout.options);

然后才能使用该布局文件中的 View 。

听起来您希望能够访问这两种布局,因此您应该执行以下操作:

View view = LayoutInflater.from(context).inflate(R.layout.options, null);
Button b = (Button) view.findViewById(R.id.b1);

关于java - 在 xml 文件上添加除 main 之外的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5965052/

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