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