本文整理汇总了Java中android.support.v4.util.ArrayMap.clear方法的典型用法代码示例。如果您正苦于以下问题:Java ArrayMap.clear方法的具体用法?Java ArrayMap.clear怎么用?Java ArrayMap.clear使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.support.v4.util.ArrayMap
的用法示例。
在下文中一共展示了ArrayMap.clear方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: dealJsInterface
import android.support.v4.util.ArrayMap; //导入方法依赖的package包/类
@Override
public void dealJsInterface(ArrayMap<String, Object> objects,AgentWeb.SecurityType securityType) {
if (securityType== AgentWeb.SecurityType.strict&&AgentWebConfig.WEBVIEW_TYPE!=AgentWebConfig.WEBVIEW_AGENTWEB_SAFE_TYPE&&Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR1) {
LogUtils.i(TAG,"give up all inject objects");
objects.clear();
objects = null;
System.gc();
}
}
示例2: dealJsInterface
import android.support.v4.util.ArrayMap; //导入方法依赖的package包/类
@Override
public void dealJsInterface(ArrayMap<String, Object> objects,AgentWebX5.SecurityType securityType) {
if (securityType== AgentWebX5.SecurityType.strict&& AgentWebX5Config.WEBVIEW_TYPE!= AgentWebX5Config.WEBVIEW_AGENTWEB_SAFE_TYPE&&Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR1) {
objects.clear();
objects = null;
System.gc();
}
}