gpt4 book ai didi

android - TextView 返回 null

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

我有一个监听器,它只更改按钮的文本并为用户计时。我还有一个 TextView ,它应该在用户下类时更改为新的总工作时间。我仔细检查了 xml 以确保我获取了正确的 R.Id,并且发现了监听器中的按钮而不是 TextView。这是代码:

public class HoursListener implements OnClickListener{

GlobalApp appState;
Button startStopHoursButton;
TextView hoursTotalTextView;
public boolean clockedIn;

public HoursListener(Context ctx){
appState = ((GlobalApp)ctx.getApplicationContext());
}

public void onClick(View v) {
startStopHoursButton = (Button) v.findViewById(R.id.hourstogglebutton);
hoursTotalTextView = (TextView) v.findViewById(R.id.totalWorktimeTextView);
if(!clockedIn){
startStopHoursButton.setText(R.string.clockout);
appState.getCurrentCompany().getCurrentNewWeeklyTimestamp().CreateFinishTimeStamp();
clockedIn = true;
}else{
startStopHoursButton.setText(R.string.clockin);
appState.getCurrentCompany().getCurrentNewWeeklyTimestamp().CreateFinishTimeStamp();
clockedIn = false;
hoursTotalTextView.setText(appState.getCurrentCompany().getCurrentNewWeeklyTimestamp().totalTimeDoneThisWeekToString());
}
}

这是 textView 的 xml:

<TextView
android:id="@+id/totalWorktimeTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/textView2"
android:text=""
android:textAppearance="?android:attr/textAppearanceSmall"/>

错误在于这一行:

hoursTotalTextView.setText(appState.getCurrentCompany().getCurrentNewWeeklyTimestamp().totalTimeDoneThisWeekToString());

我正在考虑将代码放在 Activity 本身中,但我觉得我可以这样做。我想要一些我可以像听众一样调用的东西,所以我减少了代码中的冗余。我已经仔细检查过它是 null 的 hoursTotalTextView。然而按钮不是。有什么想法吗?

显示相关值不为空的 Eclipse 屏幕截图(链接到全尺寸版本): Screenshot of Eclipse

最佳答案

想必你正在监听点击的onClickListener是按钮吧? onClick 传递被单击的 View v - 即按钮 - 并且文本框不是按钮的子项,因此您找不到它。

如果在您的 Activity 中声明了 HoursListener,只需执行 findViewById 而不是 v.findViewById 即

hoursTotalTextView = (TextView) findViewById(R.id.totalWorktimeTextView);

如果没有,将 textview 传递给 HoursListener 构造函数并在那里设置 hoursTotalTextView(请记住,这感觉可能会导致内存泄漏)。

关于android - TextView 返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10163694/

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