您好,登錄后才能下訂單哦!
雖然知識非?;A(chǔ),但我覺得無論是否是難點,即便非常簡單的知識,及時寫出來對知識積累都是有好處的。今天寫一下Intent的數(shù)據(jù)傳遞。
發(fā)送端:
//創(chuàng)建Intent Intent intent = new Intent(); //把需要傳遞的內(nèi)容放進(jìn)Intent intent.putExtra("id", waitInfo.id); intent.putExtra("warnning_star", warnning_star); intent.putExtra("fengxlx", waitInfo.fengxlx); intent.putExtra("chehao", waitInfo.chehao); intent.putExtra("content", waitInfo.content); intent.putExtra("time", waitInfo.time); //設(shè)置即將要啟動的Activity intent.setClass(getActivity(), ZaiTuYuJing_FengXCL_XiangXXX_Activity.class); //跳轉(zhuǎn) startActivity(intent);
接收端:
//接收Intent Intent intent = getIntent(); //取出捆綁數(shù)據(jù) Bundle bundle = intent.getExtras(); //從數(shù)據(jù)中根據(jù)key取出所需內(nèi)容 int index = Integer.parseInt(bundle.getString("id")); String chehao = bundle.getString("chehao"); String content = bundle.getString("content"); String time = bundle.getString("time");
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。