gpt4 book ai didi

java - 在 Android 中从不同 View 调用按钮

转载 作者:行者123 更新时间:2023-12-02 08:26:04 25 4
gpt4 key购买 nike

在我的应用程序中, View 顶部有 3 个单选按钮。当我选择一个下面的“正文”时,它会更改为我定义的 XML View 。

(如果您想要更多信息+图片,我之前问过一个与此相关的问题:Dynamically change view inside view in Android)

现在我想从不同的 View 调用并更改按钮的文本和编辑文本。

当我执行 btnAutopech = (Button) findViewById(R.id.btnAutopech); 时,它会给出 NullPointerException。

我该怎么做?

最佳答案

试试这个......

LayoutInflater layoutInflater = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
LinearLayout ll= new LinearLayout(context);
ll=(LinearLayout)layoutInflater.inflate(R.layout.gegevens_verzekeringen, ll);
btnAutopech = (Button) ll.findViewById(R.id.btnAutopech);

谢谢......

关于java - 在 Android 中从不同 View 调用按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4491311/

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