gpt4 book ai didi

java - TextView 为空

转载 作者:行者123 更新时间:2023-12-02 13:41:14 25 4
gpt4 key购买 nike

我在使用 TextView 时遇到问题。按下按钮后,我想向该 TextView 添加一些内容,但显然始终为空。

fragment_one.xml

....
<TextView
android:id="@+id/reply"
android:layout_below="@+id/test"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/reply"/>
<Button android:text="@string/_0"
android:id="@+id/_0"
android:onClick="handleButtons"/>
....

ActivityTwo.java

....
public void handleButtons(View v){
setContentView(R.layout.fragment_one);
TextView tv = (TextView) v.findViewById(R.id.reply);
if(v.getId() == R.id._0){
tv.append("hi");
}
....

我想在 reply TextView 中附加一些文本,但显然它总是返回 NullPointerException。我迷失了,我不知道失败是什么。

最佳答案

不使用 v.findViewById,而是使用 this.findViewById

关于java - TextView 为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42735577/

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