Board logo

標題: [分享] Intent 與 Bundle傳遞資料 [打印本頁]

作者: 微笑    時間: 2014-3-11 17:59     標題: Intent 與 Bundle傳遞資料

兩個不同Activity之間的資料傳遞
可以透過Intent 與 Bundle搭配的方法來做

傳送資料的程式碼:
public void nextview(View view)
{
Intent ihtent=new Intent();
ihtent.setClass(this, report_app2.class);
Bundle ibundle=new Bundle();
EditText editText_name1=(EditText)findViewById(R.id.editText_name);
ibundle.putString("editText_name", editText_name1.getText().toString());
ihtent.putExtras(ibundle);
startActivity(ihtent);
MainActivity.this.finish();
}

接收部分的程式碼:
TextView textView3=(TextView)findViewById(R.id.textView2);
Bundle receive_bundle1=this.getIntent().getExtras();
textView3.setText(receive_bundle1.getString("editText_name"));




歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)