当前,我的EditText将显示存储在名为“ comment”的列中的所有值。但是,如果EditText显示从该列(注释)中检索到的文本“ pending”,则它不应自动显示。我想知道,如何避免EditText显示“ pending”?应该使用else语句吗?但是如何?
下面是EditText代码,显示从MySQL检索的文本。
etComment.setText(user.getComment());
最佳答案
您可以使用If-Else条件来避免在编辑文本中显示“待定”。
码:
if(!user.getComment().equals("Pending")){
etComment.setText(user.getComment());
}
关于java - Android:如何检查从MySQL获取的字符串“pending”的TextView值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56124187/