經過第一部分<<Android中獲取應用程序(包)的信息-----PackageManager的使用(一)>>的介紹,對PackageManager以及html
AndroidManife.xml定義的節點信息類XXXInfo類都有了必定的認識。java
本部分的內容是如何獲取安裝包得大小,包括緩存大小(cachesize)、數據大小(datasize)、應用程序大小(codesize)。android
本部分的知識點涉及到AIDL、Java反射機制。理解起來也不是很難。ios
關於安裝包得大小信息封裝在PackageStats類中,該類很簡單,只有幾個字段:緩存
PackageStats類:app
經常使用字段:ide
public long cachesize 緩存大小函數
public long codesize 應用程序大小ui
public long datasize 數據大小this
public String packageName 包名
PS:應用程序的總大小 = cachesize + codesize + datasize
也就是說只要得到了安裝包所對應的PackageStats對象,就能夠得到信息了。可是在AndroidSDK中並無顯示提供方法來
得到該對象,是否是很苦惱呢?可是,咱們能夠經過放射機制來調用系統中隱藏的函數(@hide )來得到每一個安裝包得信息。
具體方法以下:
第一步、 經過放射機制調用getPackageSizeInfo() 方法原型爲:
[java] view plaincopyprint?
/*@param packageName 應用程序包名
*@param observer 當查詢包得信息大小操做完成後,將回調給IPackageStatsObserver類中的onGetStatsCompleted()方法,
* ,而且咱們須要的PackageStats對象也封裝在其參數裏.
* @hide //隱藏函數的標記
*/
public abstract void getPackageSizeInfo(String packageName,IPackageStatsObserver observer);{
//
}
/*@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 文件
[java] view plaincopyprint?
package android.content.pm;
import android.content.pm.PackageStats;
/**
* API for package data change related callbacks from the Package Manager.
* Some usage scenarios include deletion of cache directory, generate
* statistics related to code, data, cache usage(TODO)
* {@hide}
*/
oneway interface IPackageStatsObserver {
void onGetStatsCompleted(in PackageStats pStats, boolean succeeded);
}
package android.content.pm; import android.content.pm.PackageStats; /** * API for package data change related callbacks from the Package Manager. * Some usage scenarios include deletion of cache directory, generate * statistics related to code, data, cache usage(TODO) * {@hide} */ oneway interface IPackageStatsObserver { void onGetStatsCompleted(in PackageStats pStats, boolean succeeded); }
PackageStats.aidl文件
[java] view plaincopyprint?
package android.content.pm;
parcelable PackageStats;
package android.content.pm; parcelable PackageStats;
第三步、 建立一個類繼承至IPackageStatsObserver.Stub (樁,)它本質上實現了Binder機制。當咱們把該類的一個實例經過getPackageSizeInfo()調用時,並該函數繼而啓動了啓動中間流程去獲取相關包得信息大小,當掃描完成後,最後將查詢信息回調至該類的onGetStatsCompleted(in PackageStats pStats, boolean succeeded)方法,信息大小封裝在此實例上。例如:
[java] view plaincopyprint?
//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 ; //應用程序大小
}
}
//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爲計量單位的字符串。
很重要的一點:爲了可以經過反射獲取應用程序大小,咱們必須加入如下權限,不然,會出現警告而且得不到實際值。
[java] view plaincopyprint?
<uses-permission android:name="android.permission.GET_PACKAGE_SIZE"></uses-permission>
<uses-permission android:name="android.permission.GET_PACKAGE_SIZE"></uses-permission>
流程圖以下:
Demo說明:
在第一部分應用得基礎上,咱們添加了一個新功能,點擊任何一個應用後後,彈出顯示該應用的包信息大小的對話框。
截圖以下:
工程圖: 程序效果圖:
一、dialg_app_size.xml 文件
[html] view plaincopyprint?
<?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>
<?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>
二、另外的資源文件或自定義適配器複用了第一部分,請知悉。
三、添加AIDL文件,如上。
四、主文件MainActivity.java以下:
[java] view plaincopyprint?
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); // 添加至列表中
}
}
}
}
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文件的使用和回調函數的處理。
仔細研究後,纔有所理解。