獲取手機內部所有應用的方法比較 PackageInfo、ResolveInfo
ApplicationInfo、 ComponentInfo、InstrumentationInfo、PermissionGroupInfo、PermissionInfo。
PackageItemInfo關係圖:
ApplicationInfo是從一個特定的應用得到的資訊。這些資訊是從相對應的Androdimanifest.xml的< application>標籤中收集到的。
ResolveInfo這個類是通過解析一個與IntentFilter相對應的intent得到的資訊。它部分地對應於從AndroidManifest.xml的< intent>標籤收集到的資訊。
PackageManager這個類是用來返回各種的關聯了當前已裝入裝置了的應用的包的資訊。你可以通過getPacageManager來得到這個類。
ApplicationInfo與ResolveInfo比較:前者能夠得到Icon、Label、meta-data、description。後者只能得到Icon、Label。
下面講一下這幾個類綜合在一起的具體應用:
通過呼叫PackageManager的方法可以得到兩種不同的資訊:
首先要得到manager:
PackageManager manager = getPackageManager();
Java程式碼:
List< ApplicationInfo> appList = manager.getInstalledApplications
Java程式碼:
Intent intent = new Intent(Intent.A CTION_MAIN,null);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
List< ResolveInfo> appList = manager.queryIntentActivities(intent,0);
//它是通過解析< Intent-filter>標籤得到有
< action android:name=”android.intent.action.MAIN”/>
< action android:name=”android.intent.category.LAUNCHER”/>
//這樣的app,所以得到的要比第一種方法少(前者比它多那種service、previder等app)。
通過PackageManager可以獲取手機端已安裝的apk檔案的資訊,具體程式碼如下:
PackageManager packageManager = this.getPackageManager();
List<PackageInfo> packageInfoList = packageManager.getInstalledPackages(0);
通過以上方法,可以得到手機中安裝的所有應用程式,既包括了手動安裝的apk包的資訊,也包括了系統預裝的應用軟體的資訊,要區分這兩類軟體可使用以下方法:
a.從packageInfoList獲取的packageInfo,再通過packageInfo.applicationInfo獲取applicationInfo。
b.判斷(applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM)的值,該值大於0時,表示獲取的應用為系統預裝的應用,反之則為手動安裝的應用。
大家可以看下程式碼,說明已經寫在註釋中。
其中
另為,有人可能在找 分享應用列表,在此一併說下吧。
獲取支援分享的應用的程式碼: