gpt4 book ai didi

java - 安卓/SQL服务器: Set Text to "No time" if the data at database is NULL

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

在我的数据库表中,有一个列名称“time_photo_before”。如果没有数据,该列会自动设置为 NULL。

在 Android 上,我遇到了问题。虽然我在数据为空时将文本设置为“无时间”,但它仍然在 TextView 中出现下一个“空”。但如果有数据,就会显示数据。下面是我的代码:

    timePhotoBefore = findViewById(R.id.timePhotoBefore);

if(taskClass.getTime_photo_before() != null ){
timePhotoBefore.setText(taskClass.getTime_photo_before());

}else {
timePhotoBefore.setText("No time");
}

我可以知道问题出在哪里吗?

最佳答案

我认为你应该这样写!

timePhotoBefore = findViewById(R.id.timePhotoBefore);

if(taskClass.getTime_photo_before() != null )
{
timePhotoBefore.setText(taskClass.getTime_photo_before());
if (timePhotoBefore.getText().equals("NULL")
timePhotoBefore.setText("No Time");
}
else
{
timePhotoBefore.setText("No time");
}

关于java - 安卓/SQL服务器: Set Text to "No time" if the data at database is NULL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59621382/

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