-1
我有2類,讓說的A.class和b.class
,我想從發送數組b。使用意圖,在一個類別
Intent intent = new Intent(this,b.class);
intent.putExtra("stringtext", "1");
startActivity(intent);
和在b.class我捕獲的意圖價值e爲這個
Intent it = getIntent();
String id = it.getStringExtra("stringtext");
當我嘗試打印ID,它給我的「1」 但是當我使用的ID中,如果從句我沒有工作,我嘗試這個
if(id=="1")
{
teks.setText("its one");
}
else
{
teks.setText("not one";
}
怎麼可能這件事?
它的作品謝謝! – sephtian 2012-07-15 07:28:34