我想在我的自定義啓動安裝圖標包,我已經仔細閱讀本說明How to install icon pack,但我無法理解如何使用這個類,這裏是我做了什麼:如何在自定義啓動器上安裝圖標包?
IconPackManager ic = new IconPackManager();
HashMap<String, IconPackManager.IconPack> map = new HashMap<String, IconPackManager.IconPack>(ic.getAvailableIconPacks(false));
Iterator it = map.entrySet().iterator();
Drawable d = null;
String packName = null;
IconPackManager.IconPack packIcon = null;
while (it.hasNext()) {
Map.Entry pair = (Map.Entry)it.next();
packName = (String)pair.getKey();
packIcon = (IconPackManager.IconPack)pair.getValue();
d = packIcon.getDrawableIconForPackage(packName, iconDrawable);
setIcon(d);
}
的IconPackManager是不是一個標準的Android類。這個課程來自哪裏的來源/圖書館信息在哪裏? –
上面...點擊如何安裝圖標包 –