通過第一部分<< Android中獲取應用程序(包)的信息-----PackageManager的使用(一) >>的介紹,對PackageManager以及 AndroidManife.xml定義的節點信息類XXXInfo類都有了一定的認識。 本部分的內容是如何獲取安裝包得大小,包括緩存大小( cachesize)、數據大小(datasize)、應用程序大小(codesize)。 本部分的知識點涉及到AIDL、Java反射機制。理解起來也不是很難。 關於安裝包得大小信息封裝在[url=]PackageStats[/url]類中,該類很簡單,只有幾個字段: PackageStats類: 常用字段: public long cachesize 緩存大小 public long codesize 應用程序大小 public long datasize 數據大小 public String packageName 包名 PS:應用程序的總大小= cachesize + codesize + datasize 也就是說只要獲得了安裝包所對應的[url=]PackageStats[/url]對象,就可以獲得信息了。但是在AndroidSDK中並沒有顯示提供方法來 獲得該對象,是不是很苦惱呢?但是,我們可以通過放射機制來調用系統中隱藏的函數( @hide )來獲得每個安裝包得信息。 具體方法如下: 第一步、通過放射機制調用[url=]getPackageSizeInfo[/url] ()方法原型為: - /*@param packageName 应用程序包名
- *@param observer 当查询包得信息大小操作完成后,将回调给IPackageStatsObserver类中的onGetStatsCompleted()方法,
- * ,并且我们需要的PackageStats对象也封装在其参数里.
- * @hide //隐藏函数的标记
- */
- public abstract void getPackageSizeInfo(String packageName,IPackageStatsObserver observer);{
- //
- }
複製代碼內部調用流程如下,這個知識點較為複雜,知道即可, getPackageSizeInfo方法內部調用getPackageSizeInfoLI(packageName, pStats)方法來完成包狀態獲取。 getPackageSizeInfoLI方法內部調用Installer.getSizeInfo(String pkgName, String apkPath,String fwdLockApkPath, PackageStats pStats),繼而將包狀態信息返回給參數pStats。getSizeInfo這個方法內部是以本機Socket方式連接到Server, 然後向server發送一個文本字符串命令,格式:getsize apkPath fwdLockApkPath 給server。Server將結果返回,並解析到pStats 中。掌握這個調用知識鏈即可。
第二步、由於需要獲得系統級的服務或類,我們必須加入Android系統形成的AIDL文件,共兩個: IPackageStatsObserver.aidl 和PackageStats.aidl文件。並將其放置在android.pm.content包路徑下。 IPackageStatsObserver.aidl 文件 - /*@param packageName 应用程序包名
- *@param observer 当查询包得信息大小操作完成后,将回调给IPackageStatsObserver类中的onGetStatsCompleted()方法,
- * ,并且我们需要的PackageStats对象也封装在其参数里.
- * @hide //隐藏函数的标记
- */
- public abstract void getPackageSizeInfo(String packageName,IPackageStatsObserver observer);{
- //
- }
複製代碼
PackageStats.aidl文件 - package android.content.pm;
- parcelable PackageStats;
複製代碼
第三步、創建一個類繼承至IPackageStatsObserver.Stub (樁,)它本質上實現了Binder機制。當我們把該類的一個實例通過getPackageSizeInfo()調用時,並該函數繼而啟動了啟動中間流程去獲取相關包得信息大小,當掃描完成後,最後將查詢信息回調至該類的onGetStatsCompleted(in PackageStats pStats, boolean succeeded)方法,信息大小封裝在此實例上。例如: - //aidl文件形成的Bindler机制服务类
- public class PkgSizeObserver extends IPackageStatsObserver.Stub{
- /*** 回调函数,
- * @param pStatus ,返回数据封装在PackageStats对象中
- * @param succeeded 代表回调成功
- */
- @Override
- public void onGetStatsCompleted(PackageStats pStats, boolean succeeded)
- throws RemoteException {
- // TODO Auto-generated method stub
- cachesize = pStats.cacheSize ; //缓存大小
- datasize = pStats.codeSize ; //数据大小
- codesize = pStats.codeSize ; //应用程序大小
- }
- }
複製代碼 第四步、最後我們可以獲取pStats的屬性,獲得它們的屬性值,通過調用系統函數Formatter.formateFileSize(long size)轉換 為對應的以kb/mb為計量單位的字符串。 很重要的一點:為了能夠通過反射獲取應用程序大小,我們必須加入以下權限,否則,會出現警告並且得不到實際值。 - <uses-permission android:name="android.permission.GET_PACKAGE_SIZE"></uses-permission>
複製代碼 流程圖如下: Demo說明: 在第一部分應用得基礎上,我們添加了一個新功能,點擊任何一個應用後後,彈出顯示該應用的包信息大小的對話框。 截圖如下: 工程圖: 程序效果圖:
1、dialg_app_size.xml 文件 - <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical" android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <LinearLayout android:layout_width="wrap_content"
- android:layout_height="wrap_content" android:orientation="horizontal">
- <TextView android:layout_width="100dip"
- android:layout_height="wrap_content" android:text="缓存大小:"></TextView>
- <TextView android:layout_width="100dip" android:id="@+id/tvcachesize"
- android:layout_height="wrap_content"></TextView>
- </LinearLayout>
- <LinearLayout android:layout_width="wrap_content"
- android:layout_height="wrap_content" android:orientation="horizontal">
- <TextView android:layout_width="100dip"
- android:layout_height="wrap_content" android:text="数据大小:"></TextView>
- <TextView android:layout_width="100dip" android:id="@+id/tvdatasize"
- android:layout_height="wrap_content"></TextView>
- </LinearLayout>
- <LinearLayout android:layout_width="wrap_content"
- android:layout_height="wrap_content" android:orientation="horizontal">
- <TextView android:layout_width="100dip"
- android:layout_height="wrap_content" android:text="应用程序大小:"></TextView>
- <TextView android:layout_width="100dip" android:id="@+id/tvcodesize"
- android:layout_height="wrap_content"></TextView>
- </LinearLayout>
- <LinearLayout android:layout_width="wrap_content"
- android:layout_height="wrap_content" android:orientation="horizontal">
- <TextView android:layout_width="100dip"
- android:layout_height="wrap_content" android:text="总大小:"></TextView>
- <TextView android:layout_width="100dip" android:id="@+id/tvtotalsize"
- android:layout_height="wrap_content"></TextView>
- </LinearLayout>
- </LinearLayout>
複製代碼
2、另外的資源文件或自定義適配器復用了第一部分,請知悉。 3、添加AIDL文件,如上。 4、主文件MainActivity.java如下: - package com.qin.appsize;
- import java.lang.reflect.Method;
- import java.util.ArrayList;
- import java.util.Collections;
- import java.util.List;
- import com.qin.appsize.AppInfo;
- import android.app.Activity;
- import android.app.AlertDialog;
- import android.content.ComponentName;
- import android.content.Context;
- import android.content.DialogInterface;
- import android.content.Intent;
- import android.content.pm.IPackageStatsObserver;
- import android.content.pm.PackageManager;
- import android.content.pm.PackageStats;
- import android.content.pm.ResolveInfo;
- import android.graphics.drawable.Drawable;
- import android.os.Bundle;
- import android.os.RemoteException;
- import android.text.format.Formatter;
- import android.util.Log;
- import android.view.LayoutInflater;
- import android.view.View;
- import android.widget.AdapterView;
- import android.widget.ListView;
- import android.widget.TextView;
- import android.widget.AdapterView.OnItemClickListener;
- public class MainActivity extends Activity implements OnItemClickListener{
- private static String TAG = "APP_SIZE";
- private ListView listview = null;
- private List<AppInfo> mlistAppInfo = null;
- LayoutInflater infater = null ;
- //全局变量,保存当前查询包得信息
- private long cachesize ; //缓存大小
- private long datasize ; //数据大小
- private long codesize ; //应用程序大小
- private long totalsize ; //总大小
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.browse_app_list);
- listview = (ListView) findViewById(R.id.listviewApp);
- mlistAppInfo = new ArrayList<AppInfo>();
- queryAppInfo(); // 查询所有应用程序信息
- BrowseApplicationInfoAdapter browseAppAdapter = new BrowseApplicationInfoAdapter(
- this, mlistAppInfo);
- listview.setAdapter(browseAppAdapter);
- listview.setOnItemClickListener(this);
- }
- // 点击弹出对话框,显示该包得大小
- public void onItemClick(AdapterView<?> arg0, View view, int position,long arg3) {
- //更新显示当前包得大小信息
- queryPacakgeSize(mlistAppInfo.get(position).getPkgName());
-
- infater = (LayoutInflater) MainActivity.this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
- View dialog = infater.inflate(R.layout.dialog_app_size, null) ;
- TextView tvcachesize =(TextView) dialog.findViewById(R.id.tvcachesize) ; //缓存大小
- TextView tvdatasize = (TextView) dialog.findViewById(R.id.tvdatasize) ; //数据大小
- TextView tvcodesize = (TextView) dialog.findViewById(R.id.tvcodesize) ; // 应用程序大小
- TextView tvtotalsize = (TextView) dialog.findViewById(R.id.tvtotalsize) ; //总大小
- //类型转换并赋值
- tvcachesize.setText(formateFileSize(cachesize));
- tvdatasize.setText(formateFileSize(datasize)) ;
- tvcodesize.setText(formateFileSize(codesize)) ;
- tvtotalsize.setText(formateFileSize(totalsize)) ;
- //显示自定义对话框
- AlertDialog.Builder builder =new AlertDialog.Builder(MainActivity.this) ;
- builder.setView(dialog) ;
- builder.setTitle(mlistAppInfo.get(position).getAppLabel()+"的大小信息为:") ;
- builder.setPositiveButton("确定", new DialogInterface.OnClickListener() {
- @Override
- public void onClick(DialogInterface dialog, int which) {
- // TODO Auto-generated method stub
- dialog.cancel() ; // 取消显示对话框
- }
-
- });
- builder.create().show() ;
- }
- public void queryPacakgeSize(String pkgName) throws Exception{
- if ( pkgName != null){
- //使用放射机制得到PackageManager类的隐藏函数getPackageSizeInfo
- PackageManager pm = getPackageManager(); //得到pm对象
- try {
- //通过反射机制获得该隐藏函数
- Method getPackageSizeInfo = pm.getClass().getDeclaredMethod("getPackageSizeInfo", String.class,IPackageStatsObserver.class);
- //调用该函数,并且给其分配参数 ,待调用流程完成后会回调PkgSizeObserver类的函数
- getPackageSizeInfo.invoke(pm, pkgName,new PkgSizeObserver());
- }
- catch(Exception ex){
- Log.e(TAG, "NoSuchMethodException") ;
- ex.printStackTrace() ;
- throw ex ; // 抛出异常
- }
- }
- }
-
- //aidl文件形成的Bindler机制服务类
- public class PkgSizeObserver extends IPackageStatsObserver.Stub{
- /*** 回调函数,
- * @param pStatus ,返回数据封装在PackageStats对象中
- * @param succeeded 代表回调成功
- */
- @Override
- public void onGetStatsCompleted(PackageStats pStats, boolean succeeded)
- throws RemoteException {
- // TODO Auto-generated method stub
- cachesize = pStats.cacheSize ; //缓存大小
- datasize = pStats.dataSize ; //数据大小
- codesize = pStats.codeSize ; //应用程序大小
- totalsize = cachesize + datasize + codesize ;
- Log.i(TAG, "cachesize--->"+cachesize+" datasize---->"+datasize+ " codeSize---->"+codesize) ;
- }
- }
- //系统函数,字符串转换 long -String (kb)
- private String formateFileSize(long size){
- return Formatter.formatFileSize(MainActivity.this, size);
- }
- // 获得所有启动Activity的信息,类似于Launch界面
- public void queryAppInfo() {
- PackageManager pm = this.getPackageManager(); // 获得PackageManager对象
- Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
- mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
- // 通过查询,获得所有ResolveInfo对象.
- List<ResolveInfo> resolveInfos = pm.queryIntentActivities(mainIntent, 0);
- // 调用系统排序 , 根据name排序
- // 该排序很重要,否则只能显示系统应用,而不能列出第三方应用程序
- Collections.sort(resolveInfos,new ResolveInfo.DisplayNameComparator(pm));
- if (mlistAppInfo != null) {
- mlistAppInfo.clear();
- for (ResolveInfo reInfo : resolveInfos) {
- String activityName = reInfo.activityInfo.name; // 获得该应用程序的启动Activity的name
- String pkgName = reInfo.activityInfo.packageName; // 获得应用程序的包名
- String appLabel = (String) reInfo.loadLabel(pm); // 获得应用程序的Label
- Drawable icon = reInfo.loadIcon(pm); // 获得应用程序图标
- // 为应用程序的启动Activity 准备Intent
- Intent launchIntent = new Intent();
- launchIntent.setComponent(new ComponentName(pkgName,activityName));
- // 创建一个AppInfo对象,并赋值
- AppInfo appInfo = new AppInfo();
- appInfo.setAppLabel(appLabel);
- appInfo.setPkgName(pkgName);
- appInfo.setAppIcon(icon);
- appInfo.setIntent(launchIntent);
- mlistAppInfo.add(appInfo); // 添加至列表中
- }
- }
- }
- }
複製代碼獲取應用程序信息大小就是這麼來的,整個過程相對而言還是挺簡單的,比較難理解的是AIDL文件的使用和回調函數的處理。 仔細研究後,才有所理解。
關於PackageManager的使用的源代碼已上傳,下載地址:http://download.csdn.net/detail/qinjuning/3775856 PS:源碼中的AIDL所在包名錯誤,導致報錯,應為:android.content.pm。請大家修改後運行。 把getDeclaredMethod()改成getMethod()
可用. 4.3的系統.
轉帖:http://blog.csdn.net/qinjuning/article/details/6892054
|