Android中的Bundle vs PersistableBundle

我很困惑何时使用PersistableBundle类而不是Bundle类.使用它有什么好处?任何人都可以澄清一下吗?

解决方法

它正是它所说的.

A mapping from String keys to values of varIoUs types. The set of types supported by this class is purposefully restricted to simple objects that can safely be persisted to and restored from disk.

你可以在常规的Bundle中放入任何东西.但是PersistableBundle只接受某些类型:

public static boolean isValidType(Object value) {
    return (value instanceof Integer) || (value instanceof Long) ||
            (value instanceof Double) || (value instanceof String) ||
            (value instanceof int[]) || (value instanceof long[]) ||
            (value instanceof double[]) || (value instanceof String[]) ||
            (value instanceof PersistableBundle) || (value == null) ||
            (value instanceof Boolean) || (value instanceof boolean[]);
}

这种限制是为了使其可持续.考虑到常规Bundle可以包含各种(自定义)数据,将数据持久保存到磁盘可能很复杂.对于PersistableBundle,这更容易,因为您知道它根本不能包含这样复杂的数据.

相关文章

Android性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...