启动一个服务监控android系统的打印日志--实现卸载软件提示

android卸载提示的思路是启动一个服务监控android系统的打印日志,当监控到"android.intent.action.DELETE"并且包含自己应用的包名时,提示给用户。

采用服务(实现接口处理handleLog)后台允许  启动一个线程监控日志       调用接口handleLog处理日志


package edu.nedu.uninstalldemo;

public interface LogcatObserver {
	public void handleLog(String line);
}

监控代码

[java]  view plain copy print ?
  1. public class AndroidLogcatScannerThread extends Thread {  
  2.     private LogcatObserver observer;  
  3.     public AndroidLogcatScannerThread(LogcatObserver observer) {  
  4.             this.observer = observer;  
  5.     }  
  6.   
  7.     public void run() {  
  8.             String[] cmds = { "logcat""-c" };  
  9.             String shellCmd = "logcat";  
  10.             Process process = null;  
  11.             InputStream is = null;  
  12.             DataInputStream dis = null;  
  13.             String line = "";  
  14.             Runtime runtime = Runtime.getRuntime();  
  15.             try {  
  16.  //TODO step2 流读取日志信息  调用接口方法回掉处理
  17.                     observer.handleLog(line) 
  18.                     int waitValue;  
  19.                     waitValue = runtime.exec(cmds).waitFor();  
  20.                     observer.handleLog("waitValue=" + waitValue + "\n Has do Clear logcat cache.");  
  21.                     process = runtime.exec(shellCmd);  
  22.                     is = process.getInputStream();  
  23.                     dis = new DataInputStream(is);  
  24.                     while ((line = dis.readLine()) != null) {  
  25.                         //Log.d("Log","Log.Bestpay:"+line);  
  26.                           
  27.                         if(observer!=null)  
  28.                             observer.handleLog(line);    
  29.                               
  30.                     }  
  31.             } catch (InterruptedException e) {  
  32.                     e.printStackTrace();  
  33.             } catch (IOException ie) {  
  34.                     ie.printStackTrace();  
  35.             } finally {  
  36.                     try {  
  37.                             if (dis != null) {  
  38.                                     dis.close();  
  39.                             }  
  40.                             if (is != null) {  
  41.                                     is.close();  
  42.                             }  
  43.                             if (process != null) {  
  44.                                     process.destroy();  
  45.                             }  
  46.                     } catch (Exception e) {  
  47.                             e.printStackTrace();  
  48.                     }  
  49.             }  
  50.     }  
  51. }  

监控服务:

[java]  view plain copy print ?
  1. public class AndroidLogcatScannerService extends Service implements LogcatObserver{  
  2.   
  3.     @Override  
  4.     public void onCreate() {  
  5.         // TODO Auto-generated method stub  
  6.         super.onCreate();  
  7.     }  
  8.   
  9.     @Override  
  10.     public void onDestroy() {  
  11.         // TODO Auto-generated method stub  
  12.         super.onDestroy();  
  13.     }  
  14.   
  15.     @Override  
  16.     public void onStart(Intent intent, int startId) {  
  17.         // TODO Auto-generated method stub  
  18.         super.onStart(intent, startId);  
  19.          //TODO step1 启动监控日志线程
  20.         AndroidLogcatScannerThread scannerThread=new AndroidLogcatScannerThread(AndroidLogcatScannerService.this);  
  21.         scannerThread.start();  
  22.     }  
  23.   
  24.     @Override  
  25.     public IBinder onBind(Intent intent) {  
  26.         // TODO Auto-generated method stub  
  27.         return null;  
  28.     }  
  29.   
  30.     @Override  
  31.     public void handleLog(String info) {  
  32.           //TODO step3 处理日志数据 
  33.         if (info.contains("android.intent.action.DELETE") && info.contains(getPackageName())) {  
  34.   
  35.                 Intent intent = new Intent();  
  36.                 intent.setClass(AndroidLogcatScannerService.this, UninstallActivity.class);  
  37.                 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);  
  38.                 startActivity(intent);  
  39.         }  
  40.     }  
  41.   
  42. }  

上面的代码基本实现了卸载提示,最后不要忘了权限:

[html]  view plain copy print ?
  1. <uses-permission android:name="android.permission.READ_LOGS"></uses-permission>  

代码下载地址:

http://download.csdn.net/detail/u011127787/5723743

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值