What's new
DroidForums.net | Android Forum & News

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Attn: all themers new ADW theme Template FTW

here's the icons and wallpaper i've been working on.

SCREEN3.jpg
 
quick question bgill, i'm trying to add some icons to the icon pack for ADW. this is the code that i have in the xml:
Code:
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string-array name="icon_pack" translatable="false">
    <item>"easytether.png"</item>
    <item>foxnews.png</item>
    <item>gdesktop.png</item>
    <item>pdanet.png</item>
    <item>shopper.png</item>
    <item>skyfire.png</item>
    <item>trillian.png</item>
    <item>weather.png</item>
    <item>android.png</item>
    <item>appbrain.png</item>
    <item>backup.png</item>
    <item>bump.png</item>
    </string-array>
</resources>

and i put the icons into the drawable folder. Am i missing something? cuz this ain't working.
 
quick question bgill, i'm trying to add some icons to the icon pack for ADW. this is the code that i have in the xml:
Code:
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string-array name="icon_pack" translatable="false">
    <item>"easytether.png"</item>
    <item>foxnews.png</item>
    <item>gdesktop.png</item>
    <item>pdanet.png</item>
    <item>shopper.png</item>
    <item>skyfire.png</item>
    <item>trillian.png</item>
    <item>weather.png</item>
    <item>android.png</item>
    <item>appbrain.png</item>
    <item>backup.png</item>
    <item>bump.png</item>
    </string-array>
</resources>

and i put the icons into the drawable folder. Am i missing something? cuz this ain't working.


you have to use the name from the wiki site IE:android_tether_mainactivity.png or com_android_browser_browseractivity.png
 
i guess i should've been more clear, I already have the icons done for replacing the apps icons, but this to add extra icons to the theme for the individual user to make custom shortcuts and use a custom icon from the icon pack. This is from AnderWeb's "readme" file.
Code:
To put icons in the ADW Icon pack to be used in ADW.Launcher, just edit the res/values/icon_pack.xml file and add lines like the following one:
        <item>png_finelane_no_extension</item>
        One line per icon to be shown in the icon pack. Use only images, not xml drawables.
        EXAMPLES:
        	res/drawable/icon1.png --> <item>icon1</item>
        	res/drawable-hdpi/my_cool_icon.png --> <item>my_cool_icon</item>
		FULL FILE:
			<?xml version="1.0" encoding="utf-8"?>
			<resources>
			    <string-array name="icon_pack" translatable="false">
			    	<item>icon1</item>
			    	<item>my_cool_icon</item>
			    </string-array>
			</resources>

and that's what i followed, but no luck.
 
thats just a example try changing just one to the way I said and see what happens then we can go from there!
 
lol, i got now.... i didn't need the ".png" after the file names. It's just the name of the icon, that's it.

to be honest with you. you dont even have to edit that xml just put the pngs in the drawable hdpi folder with the names from the wiki site and it works just the same!! FYI
 
yea, i kno that, but this is for extra icons. I'm trying to add as many icons as i possibly can to a theme so it's complete. lol.... now i'm just bouncing the icons i have left to the wiki list to make sure i made all the icons that i need. What a PITA!! haha
 
Back
Top