我必須將一個字符串從一個類傳遞到另一個類。但我不能做到這一點..將一個字符串從一個類傳遞到另一個
我試試這個:
String descricao = getIntent().getExtras().getString("valor");
我有樹選項卡每個人有:
public void onItemClick(AdapterView<?> parent, View view, int position, long arg3)
{
Intent i = new Intent(Contas.this, Registros.class);
i.putExtra("valor", data.get(position).getDescricao_conta().toString());
startActivity(i);
}
在接收我把這個值類
活動,該活動的列表視圖與數據有界。我想單擊tab1中列表中的項目,然後在tab2中,我在列表中看到在tab1中單擊的項目中的設置。我已經擁有了數據庫,我只需要傳遞我想讓班級換到另一個班級的字符串。
爲什麼這段代碼不工作,發生錯誤或什麼? – jamapag