溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Intent的數(shù)據(jù)傳遞

發(fā)布時間:2020-07-08 18:29:17 來源:網(wǎng)絡(luò) 閱讀:464 作者:IT學(xué)無止境 欄目:開發(fā)技術(shù)

雖然知識非?;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");


向AI問一下細(xì)節(jié)
推薦閱讀:
  1. intent使用
  2. Intent解析

免責(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)容。

AI