Showing apk icons in desktop version
Posted: 2012-01-08, 09:46 UTC
Well, this is it :)
I would like subject feature be included in 8.0 release.
I would like subject feature be included in 8.0 release.
Forum - Public Discussion and Support
https://ghisler.ch/board/
There is a function to load them:By the way, how are apk icons shown in Android version?
Code: Select all
Drawable icon=null;
try {
PackageInfo pi = packageManager.getPackageArchiveInfo(item.name, 0);
if (pi!=null) {
pi.applicationInfo.sourceDir = item.name;
pi.applicationInfo.publicSourceDir = item.name;
icon = packageManager.getApplicationIcon(pi.applicationInfo);
}
} catch (OutOfMemoryError e) {
icon = null;
} catch (Exception e) {
icon = null;
}