在好例子网,分享、交流、成长!
您当前所在位置:首页Java 开发实例Android平台开发 → 安卓安全卫士源码下载(app应用列表/应用卸载/进程管理等)

安卓安全卫士源码下载(app应用列表/应用卸载/进程管理等)

Android平台开发

下载此实例
  • 开发语言:Java
  • 实例大小:9.32M
  • 下载次数:23
  • 浏览次数:273
  • 发布时间:2016-04-26
  • 实例类别:Android平台开发
  • 发 布 人:DWADE
  • 文件格式:.rar
  • 所需积分:2
 相关标签: 安卓 安全卫士

实例介绍

【实例简介】安卓安全卫士源码

【实例截图】

【核心代码】

package com.mobilesafe;

import java.util.ArrayList;

import java.util.List;

import android.app.Activity;
import android.app.ActivityManager;
import android.app.Dialog;
import android.app.ProgressDialog;
import android.app.ActivityManager.RunningAppProcessInfo;
import android.app.AlertDialog;
import android.content.ComponentName;
import android.content.Context;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.text.format.Formatter;
import android.util.Log;
import android.view.View;
import android.view.Window;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ListView;
import android.widget.TextView;

import com.mobilesafe.adapter.ProcessListAdapter;
import com.mobilesafe.bean.DetailProceess;
import com.mobilesafe.bean.PackagesInfo;

public class TaskManagerActivity extends Activity {
	private static final String TAG = "TaskManagerActivity";
	private TextView tv_memory_info;
	private ListView lv;
	private ActivityManager am;
	private ProcessListAdapter plAdapter;
	public static final int DIALOG_START_TASK = 0;
	private ArrayList<DetailProceess> avaiAppInfo;
	private static final int DELE_APP = 0;
	private static final int SHOW_APP_DETAIL = 1;
	private static final int START_APP = 2;
	private static final int UNINSTALL_APP = 3;
	
	private static final int HANDLER_REFRESH = 1;
	
	private static final int DIALOG_PROGRESSDIALOG = 1;
	
	
	private PackagesInfo packsInfo;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		this.requestWindowFeature(Window.FEATURE_NO_TITLE);
		setContentView(R.layout.task_manager);
		tv_memory_info = (TextView) findViewById(R.id.memory_info);
		lv = (ListView) findViewById(R.id.process_list_view);
		am = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
		
		tv_memory_info.setText(getSystemAvaialbeMemorySize());
		lv.setOnItemClickListener(new TaskItemClickLinstener());	
	}
	private Handler handler = new Handler(){

		@Override
		public void handleMessage(Message msg) {
			final int what = msg.what;
			switch(what){
			case HANDLER_REFRESH:
				lv.setAdapter(plAdapter);
				dismissDialog(DIALOG_PROGRESSDIALOG);
				break;
			}
			
		}
		
	};
	@Override
	protected Dialog onCreateDialog(int id) {
		switch(id){
		case DIALOG_PROGRESSDIALOG:
			ProgressDialog progressDialog = new ProgressDialog(this);
			progressDialog.setMessage("Loading.....");
			return progressDialog;	
		}
		return null;
	}
	private void refresh() {
		showDialog(DIALOG_PROGRESSDIALOG);
		new Thread(new Runnable() {
			public void run() {
				getRunningProcess();
				handler.obtainMessage(HANDLER_REFRESH).sendToTarget();
			}

		}).start();
	}

	@Override
	protected void onResume() {
		super.onResume();
		packsInfo = new PackagesInfo(TaskManagerActivity.this);
		refresh();
	}

	

	private String getSystemAvaialbeMemorySize() {
		// 获得MemoryInfo对象
		ActivityManager.MemoryInfo outInfo = new ActivityManager.MemoryInfo();
		am.getMemoryInfo(outInfo);
		String availMem = Formatter.formatFileSize(TaskManagerActivity.this,
				outInfo.availMem);
		return availMem;
	}

	private final class TaskItemClickLinstener implements OnItemClickListener {
		public void onItemClick(AdapterView<?> view, View arg1,
				final int position, long arg3) {
			final DetailProceess dp = (DetailProceess) view
					.getItemAtPosition(position);
			AlertDialog.Builder builder = new AlertDialog.Builder(
					TaskManagerActivity.this);
			builder.setTitle(R.string.options);
			builder.setItems(R.array.taskchoice, new OnClickListener() {
				public void onClick(DialogInterface dialog, int which) {
					final String processName = dp.getProcessName();
					switch (which) {
					case DELE_APP:
						am.restartPackage(dp.getProcessName());
						refresh();
						break;
					case SHOW_APP_DETAIL:
						try {
							showAppDetail(dp);
						} catch (Exception e) {
							Log.e(TAG, e.getMessage());
						}
						break;
					case START_APP:
						try {
							startApp(dp);
						} catch (Exception e) {
							Log.e(TAG, e.getMessage());
						}
						break;
					case UNINSTALL_APP:
						Intent deleteintent = new Intent();
						deleteintent.setAction(Intent.ACTION_DELETE);
						deleteintent.setData(Uri
								.parse("package:"   processName));
						startActivityForResult(deleteintent, position);
						break;
					}
					dialog.dismiss();
				}

			}).create().show();

		}

		private void startApp(DetailProceess dp) throws Exception {
			Intent intent = new Intent();
			intent.setComponent(new ComponentName(dp.getProcessName(), dp
					.getActivityName()));
			intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
			startActivity(intent);

		}

		private void showAppDetail(DetailProceess dp) throws Exception {
			Intent intent = new Intent(TaskManagerActivity.this,
					ShowAppDetailActivity.class);
			Bundle bundle = new Bundle();
			bundle.putString("packagename", dp.getProcessName());
			bundle.putString("appversion", dp.getAppVersion());
			bundle.putString("appname", dp.getAppName());
			bundle.putStringArray("apppremissions", dp.getPermissions());
			intent.putExtras(bundle);
			startActivity(intent);
		}

	}

	public void getRunningProcess() {
		List<RunningAppProcessInfo> allRunning = am.getRunningAppProcesses();
		avaiAppInfo = new ArrayList<DetailProceess>();
		for (RunningAppProcessInfo info : allRunning) {
			String processName = info.processName;

			if ("system".equals(processName)
					|| "com.mobilesafe".equals(processName)
					|| "com.android.phone".equals(processName)
					|| "android.process.acore".equals(processName)
					|| "android.process.media".equals(processName)) {
				continue;
			}
			
			final DetailProceess dp = new DetailProceess(this, info);
			dp.fetchApplicationInfo(packsInfo);
			dp.getPackageInfo();
			if(dp.isGoodProcess()){
				avaiAppInfo.add(dp);	
			}
						
		}
		plAdapter = new ProcessListAdapter(this, avaiAppInfo,packsInfo);
	}

	/**
	 * 杀死进程
	 * 
	 * @param view
	 */
	public void killAllProcess(View view) {
		for (DetailProceess dp : avaiAppInfo) {
			am.killBackgroundProcesses(dp.getProcessName());
		}
		tv_memory_info.setText(getSystemAvaialbeMemorySize());
		refresh();
		
		
	}
}

实例下载地址

安卓安全卫士源码下载(app应用列表/应用卸载/进程管理等)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警