当我从包中获取数据时,'if' 控件永远不会工作,请帮助我.. 我需要在'if' 块中比较包的数据,因为我必须根据数据更改 textview。
result = getIntent().getExtras();
String get = result.getString("secilen");
if(number == 0) {
imgView.setImageResource( R.drawable.tas );
//txtV.setText(get);
if (get == "A"){ // if even "A" come never read if block
txtV.setText("...");
}
if (get == "B"){
txtV.setText("...");
}
if (get == "C") {
txtV.setText("...");
}
}