android 一键清除 清理

前言

  在Android设备中,我们经常会看到与系统或者应用相关的清除功能有:清除数据、清除缓存、一键清理,这么多清除功能对于一个程序猿就够难理解了,偏偏很多安卓设备上都有这些功能,对于用户来说就更难理解,趁着在把玩手机的时候想到了这一点,索引追根究底了解他们的具体区别。

清除数据和清除缓存

一键清理

清除数据、清除缓存、一键清理的区别

清除数据

  清除数据主要是清除用户配置,比如SharedPreferences、数据库等等,这些数据都是在程序运行过程中保存的用户配置信息,清除数据后,下次进入程序就和第一次进入程序时一样;

清除缓存

  缓存是程序运行时的临时存储空间,它可以存放从网络下载的临时图片,从用户的角度出发清除缓存对用户并没有太大的影响,但是清除缓存后用户再次使用该APP时,由于本地缓存已经被清理,所有的数据需要重新从网络上获取,注意:为了在清除缓存的时候能够正常清除与应用相关的缓存,请将缓存文件存放在getCacheDir()或者 getExternalCacheDir()路径下。比如对微信清除缓存,则聊天记录、朋友圈缓存的用户头像、图片、文字等信息都会被清除掉,清除缓存后再次进入微信时你会发现消息记录被清空了,朋友圈的图片和用户头像需要加载一会才能正常显示。

一键清理

  一键清理是系统级别的功能,它主要是杀后台进程,以达到释放内存的目的,但杀掉哪些进程和清理时设置的重要值阈值有关,重要值越大说明进程重要程度越低,如果在清理时某个进程的重要值大于该阈值,该进程就会被杀掉。比如微信等应用在后台,一件清理后会将微信和与之相关的服务都杀掉(有的服务做了特殊处理,杀不死!!!)。

参考资料

说明

  为了让程序被卸载后不在文件系统中留下毫无关联的无用文件,建议将应用相关的配置和缓存文件存放在程序被卸载时会删掉的文件夹下面(音乐文件、视频文件、图片、电子书这种适合多个应用阅读和浏览的文件除外),具体路径有:

  • /data/data/package/

  • getFilesDir()

  • getCacheDir()

  • getExternalCacheDir()(是否能够在程序被卸载时被删除与API的等级有关)

  • getExternalFilesDir()(是否能够在程序被卸载时被删除与API的等级有关)

--------------------------------------------------

Android 一键清理、内存清理功能实现:

360桌面、金山清理大师等都提供了一键清理、一键加速等功能,其实就是杀一些后台进程来达到释放内存的目的。

   基本思路就是列出所有运行的进程,查看其重要值(RunningAppProcessInfo.importance,值越大说明进程重要程度越低),可以设定一个阈值,

如果该进程的重要值大于该阈值,就可以杀掉该进程。

进程的重要值有以下几个等级:

[java] view plain copy

  1. /** 
  2.          * Constant for {@link #importance}: this is a persistent process. 
  3.          * Only used when reporting to process observers. 
  4.          * @hide 
  5.          */  
  6.         public static final int IMPORTANCE_PERSISTENT = 50;  
  7.   
  8.         /** 
  9.          * Constant for {@link #importance}: this process is running the 
  10.          * foreground UI. 
  11.          */  
  12.         public static final int IMPORTANCE_FOREGROUND = 100;  
  13.           
  14.         /** 
  15.          * Constant for {@link #importance}: this process is running something 
  16.          * that is actively visible to the user, though not in the immediate 
  17.          * foreground. 
  18.          */  
  19.         public static final int IMPORTANCE_VISIBLE = 200;  
  20.           
  21.         /** 
  22.          * Constant for {@link #importance}: this process is running something 
  23.          * that is considered to be actively perceptible to the user.  An 
  24.          * example would be an application performing background music playback. 
  25.          */  
  26.         public static final int IMPORTANCE_PERCEPTIBLE = 130;  
  27.           
  28.         /** 
  29.          * Constant for {@link #importance}: this process is running an 
  30.          * application that can not save its state, and thus can't be killed 
  31.          * while in the background. 
  32.          * @hide 
  33.          */  
  34.         public static final int IMPORTANCE_CANT_SAVE_STATE = 170;  
  35.           
  36.         /** 
  37.          * Constant for {@link #importance}: this process is contains services 
  38.          * that should remain running. 
  39.          */  
  40.         public static final int IMPORTANCE_SERVICE = 300;  
  41.           
  42.         /** 
  43.          * Constant for {@link #importance}: this process process contains 
  44.          * background code that is expendable. 
  45.          */  
  46.         public static final int IMPORTANCE_BACKGROUND = 400;  
  47.           
  48.         /** 
  49.          * Constant for {@link #importance}: this process is empty of any 
  50.          * actively running code. 
  51.          */  
  52.         public static final int IMPORTANCE_EMPTY = 500;  


直接上代码:

[java] view plain copy

  1. package com.android.clearmemory;  
  2.   
  3. import android.app.Activity;  
  4. import android.app.ActivityManager;  
  5. import android.app.ActivityManager.MemoryInfo;  
  6. import android.app.ActivityManager.RunningAppProcessInfo;  
  7. import android.content.Context;  
  8. import android.os.Bundle;  
  9. import android.util.Log;  
  10. import android.view.View;  
  11. import android.widget.Button;  
  12. import android.widget.Toast;  
  13.   
  14. import java.util.List;  
  15.   
  16. public class ClearMemoryActivity extends Activity {  
  17.     private static final String TAG = "ClearMemoryActivity";  
  18.   
  19.     /** 
  20.      * Called when the activity is first created. 
  21.      */  
  22.     @Override  
  23.     public void onCreate(Bundle savedInstanceState) {  
  24.         super.onCreate(savedInstanceState);  
  25.         setContentView(R.layout.main);  
  26.   
  27.         Button clear = (Button) findViewById(R.id.clear);  
  28.         clear.setOnClickListener(new View.OnClickListener() {  
  29.             @Override  
  30.             public void onClick(View v) {  
  31.                 //To change body of implemented methods use File | Settings | File Templates.  
  32.                 ActivityManager am = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);  
  33.                 List<RunningAppProcessInfo> infoList = am.getRunningAppProcesses();  
  34.                 List<ActivityManager.RunningServiceInfo> serviceInfos = am.getRunningServices(100);  
  35.   
  36.                 long beforeMem = getAvailMemory(ClearMemoryActivity.this);  
  37.                 Log.d(TAG, "-----------before memory info : " + beforeMem);  
  38.                 int count = 0;  
  39.                 if (infoList != null) {  
  40.                     for (int i = 0; i < infoList.size(); ++i) {  
  41.                         RunningAppProcessInfo appProcessInfo = infoList.get(i);  
  42.                         Log.d(TAG, "process name : " + appProcessInfo.processName);  
  43.                         //importance 该进程的重要程度  分为几个级别,数值越低就越重要。  
  44.                         Log.d(TAG, "importance : " + appProcessInfo.importance);  
  45.   
  46.                         // 一般数值大于RunningAppProcessInfo.IMPORTANCE_SERVICE的进程都长时间没用或者空进程了  
  47.                         // 一般数值大于RunningAppProcessInfo.IMPORTANCE_VISIBLE的进程都是非可见进程,也就是在后台运行着  
  48.                         if (appProcessInfo.importance > RunningAppProcessInfo.IMPORTANCE_VISIBLE) {  
  49.                             String[] pkgList = appProcessInfo.pkgList;  
  50.                             for (int j = 0; j < pkgList.length; ++j) {//pkgList 得到该进程下运行的包名  
  51.                                 Log.d(TAG, "It will be killed, package name : " + pkgList[j]);  
  52.                                 am.killBackgroundProcesses(pkgList[j]);  
  53.                                 count++;  
  54.                             }  
  55.                         }  
  56.   
  57.                     }  
  58.                 }  
  59.   
  60.                 long afterMem = getAvailMemory(ClearMemoryActivity.this);  
  61.                 Log.d(TAG, "----------- after memory info : " + afterMem);  
  62.                 Toast.makeText(ClearMemoryActivity.this, "clear " + count + " process, "  
  63.                             + (afterMem - beforeMem) + "M", Toast.LENGTH_LONG).show();  
  64.             }  
  65.         });  
  66.   
  67.         ClearMemoryFloatView.instance(getApplicationContext()).createView();  
  68.     }  
  69.   
  70.     //获取可用内存大小  
  71.     private long getAvailMemory(Context context) {  
  72.         // 获取android当前可用内存大小  
  73.         ActivityManager am = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);  
  74.         MemoryInfo mi = new MemoryInfo();  
  75.         am.getMemoryInfo(mi);  
  76.         //mi.availMem; 当前系统的可用内存  
  77.         //return Formatter.formatFileSize(context, mi.availMem);// 将获取的内存大小规格化  
  78.         Log.d(TAG, "可用内存---->>>" + mi.availMem / (1024 * 1024));  
  79.         return mi.availMem / (1024 * 1024);  
  80.     }  
  81. }  

注意:

我这里选择阈值是IMPORTANCE_VISIBLE级别的,也就是非可见的后台进程和服务会被杀掉(一些系统进程肯定除外)。

清理的效果跟金山清理大师和360桌面的一键清理效果差不多。

如果不想杀的太凶,可以选择IMPORTANCE_SERVICE级别,杀掉那些长时间没用或者空进程了,

这个级别的清理力度不够大,达不到金山清理大师的效果。

猜你喜欢

转载自blog.csdn.net/lf12345678910/article/details/77853322
今日推荐