当前位置: 首页>>代码示例>>Java>>正文


Java Bundle.clear方法代码示例

本文整理汇总了Java中android.os.Bundle.clear方法的典型用法代码示例。如果您正苦于以下问题:Java Bundle.clear方法的具体用法?Java Bundle.clear怎么用?Java Bundle.clear使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在android.os.Bundle的用法示例。


在下文中一共展示了Bundle.clear方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: isSuspicious

import android.os.Bundle; //导入方法依赖的package包/类
/**
 * Scrubs Bundles for private serializable subclasses in the extras. If the Bundle's extras contain a
 * private serializable subclass, the Bundle is cleared. If the Bundle is null, has no extras, or the
 * extras do not contain a private serializable subclass, the Bundle is not mutated.
 *
 * @param bundle {@code Bundle} to scrub. This parameter may be mutated if scrubbing is necessary. This
 *               parameter may be null.
 * @return true if the Bundle was scrubbed, false if the Bundle was not modified.
 */
public static boolean isSuspicious(@Nullable final Bundle bundle) {

    if (bundle != null) {

    /*
     * Note: This is a hack to work around a private serializable classloader attack
     */
        try {
            // if a private serializable exists, this will throw an exception
            bundle.containsKey(null);
        } catch (final Exception e) {
            bundle.clear();
            return true;
        }
    }

    return false;
}
 
开发者ID:brandall76,项目名称:Saiy-PS,代码行数:28,代码来源:UtilsBundle.java

示例2: scrub

import android.os.Bundle; //导入方法依赖的package包/类
public static boolean scrub(final Bundle bundle) {
    if (null == bundle) {
        return false;
    }
    try {
        // if a private serializable exists, this will throw an exception
        bundle.containsKey(null);
    } catch (final Exception e) {
        bundle.clear();
        return true;
    }

    return false;
}
 
开发者ID:Dnet3,项目名称:CustomAndroidOneSheeld,代码行数:15,代码来源:BundleScrubber.java

示例3: clearBundle

import android.os.Bundle; //导入方法依赖的package包/类
private void clearBundle(Bundle safeBundle) {
    safeBundle.clear();
    safeBundle = null;
}
 
开发者ID:alphater,项目名称:garras,代码行数:5,代码来源:Bundler.java

示例4: onSaveInstanceState

import android.os.Bundle; //导入方法依赖的package包/类
@Override
protected void onSaveInstanceState(Bundle outState) {
    outState.clear();
}
 
开发者ID:newDeepLearing,项目名称:decoy,代码行数:5,代码来源:WelcomeActivity.java


注:本文中的android.os.Bundle.clear方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。