1. 程式人生 > >Android bundle 傳值方法

Android bundle 傳值方法

第一種寫法,用於批量新增資料到Intent:
Intent intent = new Intent();
Bundle bundle = new Bundle();//該類用作攜帶資料
bundle.putString("name", "學習android");
intent.putExtras(bundle);//為意圖追加額外的資料,意圖原來已經具有的資料不會丟失,但key同名的資料會被替換
第二種寫法:這種寫法的作用等價於上面的寫法,只不過這種寫法是把資料一個個地新增進Intent,這種寫法使用起來比較方便,而且只需要編寫少量的程式碼。
Intent intent = new Intent();
intent.putExtra("name", "學習android");


在android2的onCreate方法中取值