完整的网站开发,门户网站的首页模板,wordpress更改固定连接后404,php 开源 建站Android Bundle的作用 Bundle作用 Bundle作用
Bundle主要用于传递数据#xff1b;它保存的数据#xff0c;是以key-value(键值对)的形式存在的传递的数据可以是boolean、byte、int、long、float、double、string等基本类型或它们对应的数组#xff0c;也可以是对象或对象数… Android Bundle的作用 Bundle作用 Bundle作用
Bundle主要用于传递数据它保存的数据是以key-value(键值对)的形式存在的传递的数据可以是boolean、byte、int、long、float、double、string等基本类型或它们对应的数组也可以是对象或对象数组。当Bundle传递的是对象或对象数组时必须实现Serializable或Parcelable接口。// 写入
Intent intent new Intent(MainActivity.this, SecondActivity.class);
Bundle bundle new Bundle();
bundle.putString(name, zhangsan);
bundle.putInt(age, 18);
intent.putExtras(bundle);
startActivity(intent);// 读取
Bundle bundle this.getIntent().getExtras();
String name bundle.getString(name);
int age bundle.getInt(age);