当前位置:   article > 正文

Android Bundle的作用

Android Bundle的作用

Android Bundle的作用

Bundle作用

Bundle主要用于传递数据;它保存的数据,是以key-value(键值对)的形式存在的
	传递的数据可以是booleanbyteintlongfloatdouble、string等基本类型或它们对应的数组,也可以是对象或对象数组。
    当Bundle传递的是对象或对象数组时,必须实现SerializableParcelable接口。
    
// 写入
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");
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/675751
推荐阅读
相关标签
  

闽ICP备14008679号