一、public Intent putExtra (String name, double[] value)
獲取方法 this.getIntent().getCharSequenceExtra("aaa")
二、public Intent putExtras (Bundle extras)
Bundle bd = new Bundle();
bd.putString("aaa",“bbbb”);
intent.putExtras(bd);
獲取方法
Bundle bd=this.getIntent().getExtras();
bd.getString("aaa"));
三、總結
帶s的得通過個Bundle來綁定數據