Android的PackageManager的使用

來源:互聯網
上載者:User

Android系統提供了很多服務管理的類,包括ActivityManager、PowerManager(電源管理)、AudioManager(音頻管理)以及PackageManager管理類。PackageManager管理應用程式包。 它可以擷取應用程式各種資訊。

 

 

  PackageManger 類

      說明: 獲得已安裝的應用程式資訊 。可以通過getPackageManager()方法獲得。

      常用方法:

        public abstract PackageManager getPackageManager()

               功能:獲得一個PackageManger對象

        public abstrac  tDrawable    getApplicationIcon(String packageName)

               參數: packageName 包名

               功能:返回給定包名的表徵圖,否則返回null

        public abstract ApplicationInfo getApplicationInfo(String packageName, int flags)

               參數:packagename 包名

                           flags 該ApplicationInfo是此flags標記,通常可以直接賦予常數0即可

               功能:返回該ApplicationInfo對象

        public abstract List<ApplicationInfo>  getInstalledApplications(int flags)

               參數:flag為一般為GET_UNINSTALLED_PACKAGES,那麼此時會返回所有ApplicationInfo。我們可以對ApplicationInfo的flags過濾,得到我們需要的。

               功能:返回給定條件的所有PackageInfo

        public abstract List<PackageInfo>  getInstalledPackages(int flags)

               參數如上

               功能:返回給定條件的所有PackageInfo

        public abstractResolveInfo  resolveActivity(Intent intent, int flags)

                參數:  intent 查尋條件,Activity所配置的action和category

                        flags: MATCH_DEFAULT_ONLY:Category必須帶有CATEGORY_DEFAULT的Activity,才匹配

                          GET_INTENT_FILTERS :匹配Intent條件即可

                          GET_RESOLVED_FILTER    :匹配Intent條件即可

                功能 :返回給定條件的ResolveInfo對象(本質上是Activity)

        public abstract  List<ResolveInfo>  queryIntentActivities(Intent intent, int flags)

                參數同上

                功能 :返回給定條件的所有ResolveInfo對象(本質上是Activity),集合對象

        public abstract ResolveInfo  resolveService(Intent intent, int flags)

           參數同上

           功能 :返回給定條件的ResolveInfo對象(本質上是Service)

        public abstract List<ResolveInfo> queryIntentServices(Intent intent, int flags)

          參數同上

          功能 :返回給定條件的所有ResolveInfo對象(本質上是Service),集合對象

 


  在網上收集了一些資料覺得挺不錯的,給PackageManager類做一個補充


  PackageItemInfo類
    說明:AndroidManifest.xml檔案中所有節點的基類,提供了這些節點的基本資料:a label、icon、 meta-data。它並不直接使用,而是由子類繼承然後調用相應方法。

     常用欄位:

            public int icon           獲得該資源圖片在R檔案中的值 (對應於android:icon屬性)

            public int labelRes       獲得該label在R檔案中的值(對應於android:label屬性)

            public String name        獲得該節點的name值 (對應於android:name屬性)

            public String packagename 獲得該應用程式的包名 (對應於android:packagename屬性)

     常用方法:

            Drawable  loadIcon(PackageManager pm)          獲得當前應用程式的映像

            CharSequence  loadLabel(PackageManager pm)     獲得當前應用程式的label

 


  ActivityInfo類  繼承自 PackageItemInfo

     說明: 獲得應用程式中<activity/>或者 <receiver />節點的資訊 。我們可以通過它來擷取我們設定的任何屬性,包括theme 、launchMode、launchmode等中的loadIcon()和loadLabel()

 


  ServiceInfo 類

     說明: 同ActivityInfo類似 ,同樣繼承自 PackageItemInfo,只不過它表示的是<service>節點資訊。

 


  ApplicationInfo類 繼承自  PackageItemInfo

     說明:擷取一個特定引用程式中<application>節點的資訊。

     欄位說明:

      flags欄位: FLAG_SYSTEM           系統應用程式

                 FLAG_EXTERNAL_STORAGE 表示該應用安裝在sdcard中

     常用方法:繼承至PackageItemInfo類中的loadIcon()和loadLabel()

 

 ResolveInfo類

     說明:根據<intent>節點來擷取其上一層目錄的資訊,通常是<activity>、<receiver>、<service>節點資訊。

     常用欄位:

          public  ActivityInfo  activityInfo  擷取 ActivityInfo對象,即<activity>或<receiver >節點資訊

          public ServiceInfo   serviceInfo    擷取 ServiceInfo對象,即<activity>節點資訊

     常用方法:

          Drawable loadIcon(PackageManager pm)       獲得當前應用程式的映像

          CharSequence loadLabel(PackageManager pm)  獲得當前應用程式的label

 


  PackageInfo類

     說明:手動擷取AndroidManifest.xml檔案的資訊 。

     常用欄位:

          public String    packageName                  包名

          public ActivityInfo[]     activities          所有<activity>節點資訊

          public ApplicationInfo applicationInfo        <application>節點資訊,只有一個

          public ActivityInfo[]    receivers            所有<receiver>節點資訊,多個

          public ServiceInfo[]    services              所有<service>節點資訊 ,多個

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.