當(dāng)一個(gè)Activity啟動(dòng)另一個(gè)Activity時(shí),常常會(huì)有一些數(shù)據(jù)傳過(guò)去,對(duì)于Activity之間的數(shù)據(jù)交換更簡(jiǎn)單,因?yàn)閮蓚€(gè)Activity之間進(jìn)行數(shù)據(jù)傳遞交換更簡(jiǎn)單,因?yàn)閮蓚€(gè)Activity之間本來(lái)就有一個(gè)“信使”Intent。
創(chuàng)新互聯(lián)主要從事網(wǎng)站設(shè)計(jì)制作、做網(wǎng)站、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)館陶,十多年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專(zhuān)業(yè),歡迎來(lái)電咨詢(xún)建站服務(wù):028-86922220
Intent的用途其實(shí)有很多,今天用到的只是最基本的。
視頻教程:http://v.youku.com/v_show/id_XNzQxMDUxNTU2.html
http://www.iqiyi.com/w_19rsgrq0wt.html#vfrm=14-7-2-1
郵箱:whsgzcy@foxmail.com
主要是以下方法:
第一種: intent = new Intent(MainActivity.this,Second.class); bundle = new Bundle(); bundle.putString("nihao", ed_content.getText().toString()); intent.putExtras(bundle); startActivity(intent); 接收: Intent intent = getIntent(); Bundle bundle = intent.getExtras(); tv_show.setText(bundle.getString("nihao")); 第二種: intent = new Intent(); intent.setClass(MainActivity.this,Second.class); intent.putExtra("key", "dash"); startActivity(intent); 接收: Intent intent = getIntent(); Bundle bundle = intent.getExtras(); String name = bundle.getString("key"); tv_show.setText(name); 首先對(duì)于在API中查到的參數(shù)需要注意以下: context : 這個(gè)參數(shù)代表了,整個(gè)android應(yīng)用的接口,幾乎所有創(chuàng)造的組件都要用到。一般都是 類(lèi)名.this