intent中putExtras和putExtra的区别[转载]

ntent中putExtras和putExtra的区别:

public Intent putExtra (String name, parcelable value)

设置方法 intent.putExtra(“aaa”, “bbbb”);

获取方法 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来绑定数

你可能感兴趣的:(android)