我有一个不起作用的if语句,即使它是正确的也不检查它的条件,我无法理解这种行为。 请帮我找错。 这是我的代码:
public Dialog onCreateDialog(int id) {
AlertDialog.Builder alert = new AlertDialog.Builder(this);
final SharedPreferences userPreferences = this.getSharedPreferences("strings", MODE_PRIVATE);
final Editor edit = userPreferences.edit();
switch (id) {
case 1:
alert.setTitle(lang_menu[3]);//"Gestione Preferiti"
alert.setIcon(R.drawable.ic_menu_star);
final String namesFav = userPreferences.getString("Name_Fav", "");
final String locfav = userPreferences.getString("Loc_Fav", "");
final String numfav = userPreferences.getString("Num_Fav", "");
final String subnumfav = userPreferences.getString("SubNumFav", "");
final String[] namesFavs = namesFav.split(";");
final String[] locfavs= locfav.split(";");
final String[] numfavs= numfav.split(";");
final String[] subnumfavs = subnumfav.split(";");
alert.setSingleChoiceItems(namesFavs, -1, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int item) {
pos = item;
}
});
alert.setPositiveButton(lang_btn[2], new DialogInterface.OnClickListener() //"Visualizza"
{
public void onClick(DialogInterface dialog, int whichButton)
{
//if (SharedCode.isOnline(content)){
if (pos == -1){
Toast.makeText(content.getApplicationContext(), lang_error[2], Toast.LENGTH_LONG).show();//"Nessun preferito selezionato"
}else{
if (namesFavs[pos] == ""){
Toast.makeText(content.getApplicationContext(), lang_error[3], Toast.LENGTH_SHORT).show();//"Pagina inesistente"
}else{
prova= locfavs[pos];
SharedCode.loc = locfavs[pos].;
SharedCode.num = Short.parseShort(numfavs[pos]);
SharedCode.sub_num= Byte.parseByte(subnumfavs[pos]);
//-----------------------------------------------------------------------------------
if (SharedCode.loc == "aertel"){//this is the if that doesn't work
IrelandTeletext.getPage(content);
}
///////////////////////---------------------------------------------------------------
}
}
pos = -1;
}
});
break;
}
AlertDialog MyAlert = alert.create();
return MyAlert;
}
答案 0 :(得分:4)
要比较Strings,您应该使用yourString.equals(other)
或yourString.equalsIgnoreCase(other)
方法,而不是==。
答案 1 :(得分:2)
你无法比较Java中的字符串。您应该使用String.equals
(...)。对此的解释非常简单。 ==
运算符检查对象是否相同。这些字符串是具有相同值的不同对象。