这是我的代码,非常简单。
ImageView newphone = (ImageView) rowView.findViewById(R.id.newsign);
System.out.println(BeanClass.get(position).newphone.toLowerCase());
if (BeanClass.get(position).newphone.toLowerCase() == "no") {
newphone.setVisibility(View.GONE);
} else {
newphone.setVisibility(View.VISIBLE);
}
图像视图始终在列表视图中可见。 这是我的logcat:
07-21 16:26:14.426: I/System.out(7480): no
07-21 16:26:14.496: I/System.out(7480): no
07-21 16:26:14.611: I/System.out(7480): no
07-21 16:26:14.896: I/System.out(7480): no
07-21 16:26:14.926: I/System.out(7480): no
07-21 16:26:14.946: I/System.out(7480): no
07-21 16:26:14.966: I/System.out(7480): no
07-21 16:26:14.991: I/System.out(7480): no
07-21 16:26:15.026: I/System.out(7480): no
07-21 16:26:15.041: I/System.out(7480): no
07-21 16:26:15.076: I/System.out(7480): no
07-21 16:26:15.091: I/System.out(7480): yes
07-21 16:26:15.126: I/System.out(7480): no
07-21 16:26:15.161: I/System.out(7480): no
07-21 16:26:15.196: I/System.out(7480): no
07-21 16:26:15.246: I/System.out(7480): no
07-21 16:26:15.276: I/System.out(7480): no
07-21 16:26:15.326: I/System.out(7480): no
07-21 16:26:15.396: I/System.out(7480): no
07-21 16:26:15.461: I/System.out(7480): no
07-21 16:26:15.541: I/System.out(7480): no
07-21 16:26:15.661: I/System.out(7480): no
07-21 16:26:15.696: I/System.out(7480): no
07-21 16:26:15.761: I/System.out(7480): yes
07-21 16:26:15.796: I/System.out(7480): no
07-21 16:26:15.841: I/System.out(7480): no
07-21 16:26:15.896: I/System.out(7480): no
07-21 16:26:15.961: I/System.out(7480): no
07-21 16:26:16.046: I/System.out(7480): no
07-21 16:26:16.111: I/System.out(7480): no
07-21 16:26:16.161: I/System.out(7480): no
07-21 16:26:16.181: I/System.out(7480): no
07-21 16:26:16.211: I/System.out(7480): no
07-21 16:26:16.241: I/System.out(7480): no
07-21 16:26:16.276: I/System.out(7480): no
07-21 16:26:16.311: I/System.out(7480): no
07-21 16:26:16.341: I/System.out(7480): no
07-21 16:26:16.376: I/System.out(7480): no
07-21 16:26:16.426: I/System.out(7480): no
07-21 16:26:16.476: I/System.out(7480): no
07-21 16:26:16.526: I/System.out(7480): yes
07-21 16:26:16.611: I/System.out(7480): no
07-21 16:26:16.696: I/System.out(7480): no
07-21 16:26:16.846: I/System.out(7480): no
我有一个自定义列表视图,其中包含某些元素。一切正常!只有这一个我不知道为什么?任何建议/
答案 0 :(得分:0)
使用equals
或equalsIgnoreCase
来比较字符串。 ==
运算符比较字符串的引用
例如:
String a = "astring";
if (a.equals("astring")) {
}
答案 1 :(得分:0)
==
通过引用比较对象。
要确定两个不同的String
个实例是否保持相同的值,请致电equals()
。