獲取Android 全部App的方法

    這個方法其實分爲兩個部分。先寫第一部分的邏輯:  java


Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);

List<ResolveInfo> apps =    packageManager.queryIntentActivities(mainIntent, 0);
if (apps == null) {
    return;
}

for (ResolveInfo info : apps) {
    info.activityInfo.applicationInfo.packageName; //package name
    info.loadLabel(packageManager).toString();     //app label
}




通常狀況下,這種作法能夠拿到這部手機上全部能夠「運行」的APP。這裏的「運行」是指有Activity能和人交互的App。 app

若是在你的App裏面調用了上述代碼,在某些狀況下會發現結果比Android Launcher裏面顯示的App要少一些。這是什麼緣由? ide

很簡單,若是這個手機有SD card,並且某些App裝在SD card上。那麼當手機重啓以後,在SD卡尚未準備好志氣,上面的代碼返回的App只包含了手機自身安裝的App,不包括SD card上的App。解決的辦法: spa


public class ExternalApplicationsReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(final Context context, final Intent intent) {
        if (intent == null || intent.getAction() == null) {
            return;
        }

        final String action = intent.getAction();
        if (Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE.equals(action)) {
            String[] packagesFromSD = intent.getStringArrayExtra(Intent.EXTRA_CHANGED_PACKAGE_LIST);
            //
        }
    }
}
在onReceive的回調方法裏面,String[] packagesFromSD就是SD上安裝的全部App的package name。加上第一部分的App。咱們就得到了全部的App。


這個BroadcastReceiver須要顯示的去註冊,不能放到AndroidManifest.xml中。 code

相關文章
相關標籤/搜索