美文网首页
Android开发中缓存的清理

Android开发中缓存的清理

作者: opkcloud | 来源:发表于2018-03-25 17:39 被阅读0次

工具类

cleanCache= view.findViewById(R.id.clean_cache);

this.cleanCache.setOnClickListener(this);

try {

cleanCache.setText(CacheUtil.getTotalCacheSize(getContext()));

}catch (Exception e) {

e.printStackTrace();

}

switch (v.getId()) {

case R.id.clean_cache :

CacheUtil.clearAllCache(getContext());

Toast.makeText(getContext(),"缓存已清理",Toast.LENGTH_SHORT).show();

cleanCache.setText("ok");

break;

}

相关文章

网友评论

      本文标题:Android开发中缓存的清理

      本文链接:https://www.haomeiwen.com/subject/jdcixftx.html