浅析android中的Bundle类

Bundle的介绍是这样的:A mapping from String values to various Parcelable types


类继承关系:

java.lang.Object
     android.os.Bundle

Bundle类是一个final类:
public final class Bundle
extends Objectimplements Parcelable Cloneable

两个activity之间的通讯可以通过bundle类来实现

直接说用法吧:

1、一个A类直接传值:

Bundle bundle = new Bundle();

bundle.putString("key", "value");

Intent intent = new Intent(A.this, B.class);

intent.putExtras(bundle);

startActivity(intent);

    另一个B类接收

Bundle bundle = getIntent().getExtras();

String data = bundle.getString("key");

2、主要介绍的用法,传序列化的对象(个人感觉挺好用,但是不知道有什么局限性)

一个A类传对象

首先对象要实现接口

public class C implements Serializable{}

C c = new C();

Bundle bundle = new Bundle();

bundle bundle.putSerializable("key", C); (此时会将C对象的所有属性方法传到下一个类中)

Intent intent = new Intent(A.this, B.class);

intent.putExtras(bundle);

startActivity(intent);

    另一个B类接收对象

C c;

c = getIntent().getSerializableExtra("key");(A类中的属性方法传给了B类)


无意中看到,感觉在实际开发中挺实用的一个类,可能还有其他方法,感觉比较笨重




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值