I am writing an Android app that needs to list all the Active and Disabled packages. I'd like to show a progress dialog because it takes a while, and I don't want to keep the screen "hung" while the process completes.
This is the important snippet:
pm = getPackageManager();
ProgressDialog pd = ProgressDialog.show(this, "Please Wait", "Loading Packages...");
pkgsEn = PackageLister.retrievePackageList(pm, getResources(), PackageLister.PACKAGES_ENABLED);
pkgsDis = PackageLister.retrievePackageList(pm, getResources(), PackageLister.PACKAGES_DISABLED);
laEn = new PackageAdapter(getBaseContext(), R.layout.packageinfo, pkgsEn);
laDis = new PackageAdapter(getBaseContext(), R.layout.packageinfo, pkgsDis);
lvEn = new ListView(getBaseContext());
lvDis = new ListView(getBaseContext());
pd.dismiss();
There's no error message, it just freezes the screen until the listing is completed.
Thanks for your time!