返回介绍

Bundle 的几个公有构造方法

发布于 2024-12-23 21:42:43 字数 1020 浏览 0 评论 0 收藏 0

公有构造方法说明
public Bundle()Constructs a new, empty Bundle
public Bundle(ClassLoader loader)Constructs a new, empty Bundle that uses a specific ClassLoader for instantiating Parcelable and Serializable objects.
public Bundle(int capacity)Constructs a new, empty Bundle sized to hold the given number of elements.
public Bundle(Bundle b)Constructs a Bundle containing a copy of the mappings from the given Bundle.
public Bundle(PersistableBundle b)Constructs a Bundle containing a copy of the mappings from the given PersistableBundle.

第 5 个构造函数中的 PersistableBundle 也是继承自 BaseBundle 的,Bundle 还提供了一个静态方法,用来返回只包含一个键值对的 Bundle 对象,具体源码如下:

public static Bundle forPair(String key, String value) {
  Bundle b = new Bundle(1);
  b.putString(key, value);
  return b;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文