所以,我正在尝试解析一些看起来像这样的 xml:
<image size="extralarge">
http://...
</image>
但我无法将 attr 的值与字符串进行比较。这是我的代码:
albumImage.setTextElementListener(new TextElementListener() {
boolean imageGoodSize=true;
@Override
public void start(Attributes attributes) {
Log.v(TAG_LASTFM, "Image #" + attributes.getValue("size") + "#");
if(attributes.getValue("size")+"" == "extralarge" || attributes.getValue("size")+"" == "mega") {
imageGoodSize=false;
Log.w(TAG_LASTFM, "(imageGoodSize set to false");
}
else {
imageGoodSize=true;
}
}
在日志中,它显示大小设置为“extralarge”,但是当我尝试将其与字符串“extralarge”进行比较时,imageGoodSize 未设置为 false。我究竟做错了什么 ?
这是日志:
06-21 01:52:30.463: V/ParseMusic_LastFM(32610): Image #extralarge#