我有字符串來比較,但我不能讓它工作,即使我搜索谷歌和stackoverflow。Android Studio Java String比較
因此,這裏是我的代碼:
@Override
protected void onPostExecute(String s) {
super.onPostExecute(s);
loading.dismiss();
if(s.equalsIgnoreCase("success")){
Intent intent = new Intent(Najava.this,UserProfile.class);
intent.putExtra(USER_NAME,username);
startActivity(intent);
}else{
Toast.makeText(Najava.this,s,Toast.LENGTH_LONG).show();
}
}
但活動不會改變和烤麪包的消息顯示了相同的字符串: http://i.stack.imgur.com/ApJLp.png
我會比較靜態字符串與您的變量將不會中斷空值的情況下。但是這不能解決你的問題。 – rekire