[THEME]freakfingers12's Honey Theme[11-02] - Galaxy S I9000 Themes and Apps

Hi everyone, users who have been using my theme, for the mean time, I've dropped this project. But not to worry, other theme-r have taken over, I'll be helping in every possible way, collaborating if he needs help to make the theme look better, but right now, I'll take a break from all this theme menace, there's a lot of work and I can't keep up with my social life. ObsessionXYZ have been doing a great job and I ask you to support him as well. Enjoy.[/I]
freakfingers12's HONEY Theme (WIP)​
LINK to the new thead by obsessionXYZ:
http://forum.xda-developers.com/showthread.php?t=958788
Installation:
Please make a backup of all your files before flashing. I am a human, I am drowsy and it's 6 in the morning, I might miss something. Do tell me if it works or not. I am not responsible if your phone happens to brick.
Working on:
CUSTOM roms.
JPY/JS3/JS5. Should work with JPU/JPX.
NOT working on:
Stock roms.
To-do list:
-fix menu options to black instead of white (draw9patching & xml required)
-fix menu buttons (tried but something wrong with .9 images)
Special thanks to:
-haxzamatic! (images from CM7)
-R64
-raksan (for the great help in decompiling)
-obsessionXYZ (for continuing the project and doing a hella great job at that)
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Download:
v0.3.2
http://www.multiupload.com/KGGLFE1DED
Old download links:
v0.3.1
http://www.fileserve.com/file/ZM6sVhG
v0.2
http://www.fileserve.com/file/QTrZRG8
v0.1
http://www.fileserve.com/file/8KsPYzx
Click to expand...
Click to collapse
Changelog:
v0.3.2
-bugs fixed (music control panel and pop up texts)
v0.3.1
-changed seekbar/progress bar to 6 dpi
-editted secondary text colours
-some minor changes
v0.2
-changed battery icon
-fixed buttons
-recoloured notification icons
-fixed popup menus
-fixed some .9.png images
-changed progress bar to blue
-removed animation, feels slicker
v0.1
-initial release
Click to expand...
Click to collapse

Very good mate, will keep an eye on this thread.

what wiget/ music player is that?
The theme loks great BTW good job

great work mate... the theme looks good

Thanks for the support. I am currently doing advances on the to-do lists. Hopefully will have a better release soon.
The music widget is player pro widget with my modded transparent background.

Bro, does it come with ext power menu and the 4/5 lockscreens?

Very nice theme... Now I have two theme to choose from, gingerbread and honeycomb
off-topic: I've read somewhere that blue is the color to avoid in our galaxy (degrade faster that other color), anyone know if that true?

Blue colour seems to suffer from burn in faster. Move your phone around more, move the status bar and it should be fine.
Yes it comes with ext power menu, and 4 lockscreen, next update will be 5 lockscreen.

Nice theme.
Please keep going

This might come in handy for you
http://forum.xda-developers.com/showpost.php?p=10986207&postcount=226

Thanks for the wallpapers, uppon.
Updated v0.2
This version is much more functional. Hope you guys like it.

Looks really nice,
Would like a Ginger green version though

freakfingers12 said:
Thanks for the wallpapers, uppon.
Updated v0.2
This version is much more functional. Hope you guys like it.
Click to expand...
Click to collapse
Very nice, I like animations though But not much of a problem, I added it myself anyways. Can you please edit some of the colours in the lock screens (such as the Puzzle Lockscreen because the orange puzzle doesn't match with the theme.
Also, can you please change the colour of the progress bars to max the blue/purple colour please?
EDIT: Another request LOLS; Can you please implement the exact lockscreens from R64 (I really like the glass music player drop down bar that R64 uses) Thanks

freakfingers12 said:
To-do list:
-figure out a way to change the progress bar to look like honeycomb one (help!)
Click to expand...
Click to collapse
Is this what you want? (see attachment)
open res/value/styles.xml, change these values:
<style name="Widget.SeekBar" parent="@style/Widget">
<item name="focusable">true</item>
<item name="maxHeight">4.0dip</item>
<item name="indeterminateOnly">false</item>
<item name="indeterminateDrawable">@drawable/progress_horizontal</item>
<item name="progressDrawable">@drawable/progress_horizontal</item>
<item name="minHeight">4.0dip</item>
<item name="thumb">@drawable/seek_thumb</item>
<item name="thumbOffset">8.0dip</item>
</style>
and open res/drawable/progress_horizontal.xml, change the color:
<?xml version="1.0" encoding="UTF-8"?>
<layer-list
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@id/background">
<shape>
<corners android:radius="0.0dip" />
<gradient
android:startColor="#ff000000"
android:endColor="#ff000000"
android:angle="270.0"
android:centerColor="#ff000000" />
</shape>
</item>
<item android:id="@id/secondaryProgress">
<clip>
<shape>
<corners android:radius="0.0dip" />
<gradient
android:startColor="#80678900"
android:endColor="#a0678900"
android:angle="270.0"
android:centerColor="#80678900" />
</shape>
</clip>
</item>
<item android:id="@id/progress">
<clip>
<shape>
<corners android:radius="0.0dip" />
<gradient
android:startColor="#ff678900"
android:endColor="#ff678900"
android:angle="270.0"
android:centerColor="#ff678900" />
</shape>
</clip>
</item>
</layer-list>
you may take out the radiu things, since we don't need corner...

downloading

freakfingers12 said:
Thanks for the wallpapers, uppon.
Updated v0.2
This version is much more functional. Hope you guys like it.
Click to expand...
Click to collapse
You're welcome. Good to see some new theme ideas
P.S Perhaps make a honey yellow colored version too or at least some of it being honey yellow Would look nice

More incentive to start honey yellow http://forum.xda-developers.com/showpost.php?p=11156595&postcount=433

nice one freakfingers! im here to support u! haha

raksan said:
Is this what you want? (see attachment)
open res/value/styles.xml, change these values:
<style name="Widget.SeekBar" parent="@style/Widget">
<item name="focusable">true</item>
<item name="maxHeight">4.0dip</item>
<item name="indeterminateOnly">false</item>
<item name="indeterminateDrawable">@drawable/progress_horizontal</item>
<item name="progressDrawable">@drawable/progress_horizontal</item>
<item name="minHeight">4.0dip</item>
<item name="thumb">@drawable/seek_thumb</item>
<item name="thumbOffset">8.0dip</item>
</style>
and open res/drawable/progress_horizontal.xml, change the color:
<?xml version="1.0" encoding="UTF-8"?>
<layer-list
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@id/background">
<shape>
<corners android:radius="0.0dip" />
<gradient
android:startColor="#ff000000"
android:endColor="#ff000000"
android:angle="270.0"
android:centerColor="#ff000000" />
</shape>
</item>
<item android:id="@id/secondaryProgress">
<clip>
<shape>
<corners android:radius="0.0dip" />
<gradient
android:startColor="#80678900"
android:endColor="#a0678900"
android:angle="270.0"
android:centerColor="#80678900" />
</shape>
</clip>
</item>
<item android:id="@id/progress">
<clip>
<shape>
<corners android:radius="0.0dip" />
<gradient
android:startColor="#ff678900"
android:endColor="#ff678900"
android:angle="270.0"
android:centerColor="#ff678900" />
</shape>
</clip>
</item>
</layer-list>
you may take out the radiu things, since we don't need corner...
Click to expand...
Click to collapse
Thank you so much for the info! I am trying it now, but needs help. PMed you.

This should help too..
http://forum.xda-developers.com/showthread.php?t=943423

Related

[REF] Manilla 2D HomeSettings.XML Explained [ONLINE]

Now that the all new Manilla 2D is in place and still evolving. Themes and skins are flowing in which is a very very good and sporting spirit
This thread is a Reference for explaining each value and coding of the HTCHomeSettings.xml file which manages the whole Manilla 2D eye candy show into it
To start with, this is a default (.xml) file without any modifications: Default XML
Everyone who knows about xml coding can help by posting the explainations. This thread can serve everyone as a how-to for skinning
Code:
Code:
<HTCHome version="3.00.0" device="ELFIN" portrait="0,0,240,268" landscape="0,0,320,268">
<ImageList path="\Windows">
Explaination:
Version = theme skin "Version"
Device = theme for which "Device"
Portrait = size of the "Portrait" screen
Landscape = size of the "Landscape" screen
ImageList Path = path where the below mentioned images are called from for the skins
---------------------------------------------------------------------------------------------------------
Code:
Code:
<Property name="IDHMWG_CLOCKBTN_1STDIGIT_POS" id="3" value="[COLOR=red]31[/COLOR], [COLOR=blue]46[/COLOR]" />
<Property name="IDHMWG_CLOCKBTN_2NDDIGIT_POS" id="4" value="[COLOR=red]68[/COLOR], [COLOR=blue]46[/COLOR]" />
<Property name="IDHMWG_CLOCKBTN_SEPARATOR_POS" id="5" value="[COLOR=red]21[/COLOR], [COLOR=blue]31[/COLOR]" />
<Property name="IDHMWG_CLOCKBTN_3RDDIGIT_POS" id="6" value="[COLOR=red]126[/COLOR], [COLOR=blue]46[/COLOR]" />
<Property name="IDHMWG_CLOCKBTN_4THDIGIT_POS" id="7" value="[COLOR=red]165[/COLOR], [COLOR=blue]46[/COLOR]" />
Explaination:
This is for the digital clock. The Red changes left <--> right. Blue changes up <--> dn
Thanks to Showaco: Also, properties ending with POS (instead of RECT) having 4 numbers, first set of two is Portrait and second set of two is Landscape. "(P)Left, Top, (L)Left, Top"
---------------------------------------------------------------------------------------------------------
Code:
Code:
<Property name="IDHMWG_CLOCKBTN_BGIMG" id="0" [COLOR=teal]value[/COLOR]="40" />
<Property name="IDTABWG_TABBG_IMAGE" id="4" [COLOR=teal]value[/COLOR]="2" />
Explaination:
value in IDs with "BGIMG" or "IMAGE" specifies the Index of image mentioned in the ImageList
---------------------------------------------------------------------------------------------------------
Code:
Code:
<Property name="IDTABWG_TABBG_ICON_WIDTH" id="3" value="[COLOR=red]48[/COLOR], [COLOR=blue]55[/COLOR]" />
Explaination:
To increase the width of the tab icons to use bigger tabs images, change the value
The Red changes width. Blue changes height
---------------------------------------------------------------------------------------------------------
Code:
Code:
<HomeWidget enable="1" tab_bg_icon="7,8" tab_icon="69,70" big_icon="29,30" />
<PeopleWidget enable="1" tab_bg_icon="19,20" tab_icon="168,169" big_icon="59,60" />
Explaination:
In the Widget list, the values of icons refer to the Index of images in ImageList
Changing the ImagePath works but you have to edit the image path/call out further down in the .xml as well. Only changing on top creates kind off a mess - Thanks to tyguy
Top entry from:
Code:
<HTCHome version="3.00.0" device="OPAL" portrait="0,0,240,268" landscape="0,0,320,268">
<ImageList path="\Windows">
To (just an example)
Code:
<HTCHome version="3.00.0" device="OPAL" portrait="0,0,240,268" landscape="0,0,320,268">
<ImageList path="[B][COLOR=royalblue]\ManilaThemes\Original[/COLOR][/B]">
& All other "\Windows" calls as in
Code:
<MyFavesWidget>
<Property name="IDTMOWG_BTN_RECT" id="0" value="60,68,180,183" />
<Property name="IDTMOWG_ICON_RECT" id="1" [COLOR=black]value="[B]\Windows[/B]\hh_myfaves[/COLOR]_button.png" />
To
Code:
<MyFavesWidget>
<Property name="IDTMOWG_BTN_RECT" id="0" value="60,68,180,183" />
<Property name="IDTMOWG_ICON_RECT" id="1" value="[B][COLOR=royalblue]\ManilaThemes\Original[/COLOR][/B]\hh_myfaves_button.png" />
---------------------------------------------------------------------------------------------------------
Code:
Code:
<Property name="IDLAUNCHERWG_COLUMN" id="3" value="[COLOR=red]4[/COLOR]" />
Explaination: Thanks to imfloflo
To change no of columns in Launcher Widget to 4
---------------------------------------------------------------------------------------------------------
Code:
Code:
<Property name="IDHMWG_CALENDARBTN1_RECT" id="40" value="[COLOR=red]12,177,228,207[/COLOR]" />
Explaination: Thanks to Showaco
The four numbers are "Left, Top, Width, Height". If a property ending in RECT has eight numbers, then first set of four is for Portrait and second set is for Landscape orientations. "(P)Left, Top, Width, Height, (L)Left, Top, Width, Height"
Explaination: Thanks to btprice2001
Certain RECT settings use "Left, Top, Width, Height" while others use "X1, Y1, X2, Y2"
e.g.
(IDHMWG_CLOCKBTN_RECT) under the HomeWidget uses "X1, Y1, X2, Y2"
(IDWEWG_LOCATIONTXT_RECT) under the WeatherWidget uses "Left, Top, Width, Height"
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
---------------------------------------------------------------------------------------------------------
Weather panel coding
Explaination: Thanks to Showaco
http://forum.xda-developers.com/showpost.php?p=2840521&postcount=132
Note: This thread is not related to Manilla 2D issues or problems but just a reference to coding in the .xml file
Code:
<Image index="0" name="hh_fw_background.png" />
Explaination:
index = the number shortcut of the image
name = the name of the picture you want to use
This line is to add shortcut number to the image which are in the variable path.
To use an image just choose the number of the index
Code:
<Tabs>
Explaination:
This line is for all the tabs you can access at the bottom of manilla 2D
Each tabs must be declare like :
Code:
<HomeWidget enable="1" tab_bg_icon="7,8" tab_icon="69,70" big_icon="29,30" />
Explaination:
Enable = switch show or hide the tab. value avalaible are 1 to show and 0 to hide the tab
tab_bg_icon = that here you use the number of the index for the image you want to use, this image is when you select a tab
tab_icon = this image is the tab unselected
big_icon = this image is the picture you can see at the center of the screen when you switch tab
There are values for each icon, e.g. "7,8" - the first is the icon and the second is the image mask used.
You can change the order of the tabs by simply switching lines
Code:
<WidgetProperty>
Explaination:
WidgetProperty= contain the property of each tab you declare in <Tabs>
Code:
<Property name="IDTABWG_WIDGET_RECT" id="0" value="0,0,240,230, 0,0,320,230" />
Explaination:
name = the name of the element to show
id = the position order to show element on the screen, 0 = first element show
value = the position on the screen base on portrait and landscape variable ( see previous post)
You can stack element just add new line with an increment id number. Don't know the limitation??
edit : You can change the police font on the today screen only not all the phone with this cab see attachement(thanks to lepsyfou )
use the attache files and use this post for changing police: >>>> http://forum.xda-developers.com/showpost.php?p=2684364&postcount=39
edit : If you want to complete no problem ( Mikulec)
should we describe the 23 files bmp,png,brn use ?
edit : MUST SEE this post http://forum.xda-developers.com/showpost.php?p=2827653&postcount=581 &
http://forum.xda-developers.com/showpost.php?p=2820754&postcount=545 thanx you very much to >>>>> mpenguin14 <<<<< for all he does with this M2D
imfloflo;2659031
Explaination[/B said:
:
Enable = switch show or hide the tab. value avalaible are1 to show and 0 to hide the tab
tab_bg_icon= that here you use the number of the index for the image you want to use, this image is when you select a tab
tab_icon= this image is the tab unselected
big_icon= this image is the picture you can see at the center of the screen when you switch tab
Click to expand...
Click to collapse
There are values for each icon, e.g. "7,8" - the first is the icon and the second is the image mask used.
Yeah, i know but i try to understand the property value in <TabWidget>
cause there is the size of the picture witouth the bottom windows bar but there is other property which contain thier own position like "IDTABWG_UNREAD_TABBG_POS" ***_POS.
If some skinners knows ?
Code:
<Property name="IDHMWG_CLOCKBTN_1STDIGIT_POS" id="3" value="[COLOR=red]31[/COLOR], [COLOR=blue]46[/COLOR]" />
The Red changes left <--> right. Blue changes up <--> dn
Thk to ababrekar
Thanks imfloflo for showing me this thread!
This is what I was looking for!
At the moment I try to imitate the OSX dock but I have a few problems.
Look here:
What I need to know is:
How can I get the Icons on the tabbar a little bit higher?
@imfloflo:
here, http://forum.xda-developers.com/showpost.php?p=2662957&postcount=546, you asked me for some details.. what exactly do you want to know?
Just change the size of hh_fw_tabicon_home.png and the mask associate
i just increase the size , i haven't make new mask to have a high quality of picture
Code:
<Property name="IDLAUNCHERWG_COLUMN" id="3" value="[COLOR=Red]4[/COLOR]" />
Here is the value to change to have 4 column in the widget launcher
landscape can be done too
just needs quite a bit of editing
in TabWidget set landscape value to 140
Code:
<Property name="IDTABWG_TAB_RECT" id="2" value="0,217,240,51, 0,140,320,51" />
but this wil requier all page to be editi to fitt landscape
PseudoReal said:
perfect guys!
Thank you. If someone can find out how to add more appointments under the hometab, this would be very nice!
Click to expand...
Click to collapse
Would like to know this, too!
thx Aileen
Code:
<Property name="IDHMWG_CALENDARBTN1_RECT" id="40" value="12,177,228,207" />
<Property name="IDHMWG_CALENDARBTN1_IMG" id="41" value="46" />
<Property name="IDHMWG_CALENDARBTN1_IMGPOS" id="42" value="29,184" />
<Property name="IDHMWG_CALENDARBTN1_TEXT_RECT" id="43" value="55,178,213,206" />
<Property name="IDHMWG_CALENDARBTN1_TEXT_TIME_RECT" id="44" value="29,178,213,192" />
<Property name="IDHMWG_CALENDARBTN1_TEXT_SUBJECT_RECT" id="45" value="29,192,213,206" />
<Property name="IDHMWG_CALENDARBTN1_IMG_FOCUS" id="46" value="181" />
<Property name="IDHMWG_CALENDARBTN1_IMG_FOCUS_DN" id="47" value="182" />
maybe by adding 2 times and modify this lines
For some reason my am/pm won't show up; I have both the big digital clock and analog clock. I've tried using the htchomesettings.xml for the clocks posted on the m2d clock/wallpaper thread that has the same setup as mine (large digital and analog clock) where the am/pm shows, but that didn't work. Anyone have any ideas?
ababrekar said:
WHOO!! Too many questions
1. For non leading zero - Change the time in settings to h:mm:tt
2. The clock can move up to the edge of the screen or out of it. Depends on where you want the clock or items
Click to expand...
Click to collapse
I'm having a hard time finding the value to move the clock up so that the first digit is level with the rest; even if I use the same value the first digit is a tad higher or lower. I'm sure it has something to do with IDHMWG_CLOCKBTN_BGIMG_POS. Also, what is IDHMWG_CLOCKBTN_RECT?
showaco said:
Ok, in the home widget portion of xml, why are we missing so many id numbers? Are these the missing id numbers for the landscape values? And if they are, does anyone have them?
Click to expand...
Click to collapse
I just noticed this in people and music there are referans to landscape
form music
Code:
<Property name="IDMUSICWG_PREVIOUSBTN_RECT" id="7" value="200, 47, 238, 85" />
<Property name="IDMUSICWG_PREVIOUSBTN_RECT_LANDSCAPE" id="8" value="26, 27, 91, 62" />
so this might be something we need to look into
showaco said:
yeah, I noticed that as well, thats why it makes sense that the missing id numbers could be the rest of the landscape items or maybe different items that could be displayed but aren't included in this xml. It would be great to get the landscape working correctly.
Click to expand...
Click to collapse
yes that sound right
@crazylilboy first post of me
http://forum.xda-developers.com/attachment.php?attachmentid=115441&d=1222190185
@stopthebus i think it is in registry
@crazylilboy just open the cab, change the font in the cab and change the setup.xml and install your cab.
in RED values to change if you want to make the cab manually
Code:
<wap-provisioningdoc>
<characteristic type="Install">
<parm name="InstallPhase" value="install"/>
<parm name="AppName" value="[COLOR=Red]HolyFox Q-Style[/COLOR]"/>
<parm name="InstallDir" value="%CE1%\[COLOR=Red]HolyFox\QQ[/COLOR]" translation="install"/>
<parm name="NumDirs" value="1"/>
<parm name="NumFiles" value="4"/>
<parm name="NumRegKeys" value="0"/>
<parm name="NumRegVals" value="0"/>
<parm name="NumShortcuts" value="0"/>
</characteristic>
<characteristic type="FileOperation">
<characteristic type="%CE2%" translation="install">
<characteristic type="MakeDir"/>
<characteristic type="[COLOR=Red]neue helvetica 35 thin.ttf[/COLOR]" translation="install">
<characteristic type="Extract">
<parm name="Source" value="[COLOR=Red]NEUEHE~1.001[/COLOR]"/>
<parm name="WarnIfSkip"/>
</characteristic>
</characteristic>
<characteristic type="[COLOR=Red]neue helvetica 55 roman.ttf[/COLOR]" translation="install">
<characteristic type="Extract">
<parm name="Source" value="[COLOR=Red]NEUEHE~1.002[/COLOR]"/>
<parm name="WarnIfSkip"/>
</characteristic>
</characteristic>
<characteristic type="[COLOR=Red]Helvetica LT 35 Thin.ttf[/COLOR]" translation="install">
<characteristic type="Extract">
<parm name="Source" value="[COLOR=Red]HELVET~1.003[/COLOR]"/>
<parm name="WarnIfSkip"/>
</characteristic>
</characteristic>
<characteristic type="[COLOR=Red]Helvetica LT 55 Roman.ttf[/COLOR]" translation="install">
<characteristic type="Extract">
<parm name="Source" value="[COLOR=Red]HELVET~1.004[/COLOR]"/>
<parm name="WarnIfSkip"/>
</characteristic>
</characteristic>
</characteristic>
</characteristic>
<characteristic type="Registry"/>
</wap-provisioningdoc>
Well, I have found that the following registry entry is created:
Code:
HKLM\Software\HTC\Manili2D\Font
and also
Code:
HKLM\Software\HTC\Manili2D\TodayItem\TextColor
However, I have not had a chance to play with either of these to see what all can be done.
MyFaves Widget
I just noticed in the xml file:
Code:
<MyFavesWidget>
<Property name="IDTMOWG_BTN_RECT" id="0" value="60,68,180,183" />
<Property name="IDTMOWG_ICON_RECT" id="1" value="\Windows\hh_myfaves_button.png" />
<Property name="IDTMOWG_IMAGE_FILE" id="2" value="0,25,240,225" />
</MyFavesWidget>
My thoughts:
1) The second line, Property name = "IDTMOWG_ICON_RECT", the value refers to an image file.
2) Property name="IDTMOWG_IMAGE_FILE", the value refers to rectangular boundary points.
I'm not an expert, but my IQ tells me that the two values must have been interchanged.
I tried interchanging the values, but no luck in displaying the MyFaves widget.
Now, my questions are, do we have an edited version of the HTCHomeSettings.xml inside the cab file? Who edited it? Can we get hold of the original so we can take a look at the Myfaves widget?
you can see myFaves apps in android here http://www.youtube.com/watch?v=CSm0VgGwBSo
http://androidcommunity.com/blog/wp.../09/t-mobile_g1_getting_started_manual_13.jpg and in the notice pdf here http://support.t-mobile.com/knowbase/root/public/tm30235.pdf
I did a different context on the path of the images:
Code:
<ImageList path="\Windows">
<Image index="0" name="[B][SIZE="3"]\m2d_images\[/SIZE][/B]hh_fw_background.png" />
<Image index="1" name="\m2d_images\hh_fw_title.png" />
<Image index="2" name="\m2d_images\hh_fw_tab_bg_fill.png" />
<Image index="3" name="\m2d_images\hh_fw_tabbtn.png" />
<Image index="4" name="\m2d_images\hh_fw_tabbtn_mask.png" />
<Image index="5" name="\m2d_images\hh_fw_unread.png" />
<Image index="6" name="\m2d_images\hh_fw_unread_mask.png" />
<Image index="7" name="\m2d_images\hh_fw_tabbg_home.png" />
:
:
I've added it directly on the image path (\m2d_images\) and not modifying the imageList path attribute. Why? Everything is working except for one: for some reason my Album Art doesn't display properly, so I traced the root cause to this property:
Code:
[B][SIZE="3"]<Image index="119" name="hh_music_record.png" />[/SIZE][/B]
<Image index="120" name="\m2d_images\hh_fw_tabbg_operator.png" />
It seems hh_music_record.png doesn't want to be read anywhere other than \Windows. So if you have a music cover art problem I think this will fix it
pfcsabre said:
I did a different context on the path of the images:
It seems hh_music_record.png doesn't want to be read anywhere other than \Windows. So if you have a music cover art problem I think this will fix it
Click to expand...
Click to collapse
nice discovery.
I'll try
Code:
<ImageList path="[B]\m2d_images[/B]">
<Image index="0" name="hh_fw_background.png" />
<Image index="1" name="hh_fw_title.png" />
<Image index="2" name="hh_fw_tab_bg_fill.png" />
<Image index="3" name="hh_fw_tabbtn.png" />
<Image index="4" name="hh_fw_tabbtn_mask.png" />
<Image index="5" name="hh_fw_unread.png" />
<Image index="6" name="hh_fw_unread_mask.png" />
<Image index="7" name="hh_fw_tabbg_home.png" />
:
:
and
Code:
[B][SIZE="3"]<Image index="119" name="[B]\Windows\[/B]hh_music_record.png" />[/SIZE][/B]
<Image index="120" name="hh_fw_tabbg_operator.png" />
At least I just have to edit 2 lines of code instead of hundreds of lines.
Hope it works...

[MOD][HOW TO GUIDE] 1% Battery Mod and charging animations for MD4 based ROMs

A while ago someone in the MOAR thread asked about changing the battery animation. I thought I would post a few, and do an abbreviated how-to to make adjustments.
For people on stock ROM, you first will need to make a 1% battery mod with your SystemUI.apk. This has been every elegantly described by RMarkwald at team us cellular site. I use the apk multi tool for my compilng and decompiling. as you can see, only two xml files need to be edited: stat_sys_battery.xml and stat_sys_battery_charging.xml.
Decoding the xml is not very difficult, which makes editing quite easy. When the phone is running on battery, it uses the stat_sys_battery.xml. Each item refers to a png file by name. the maxLevel is the maximum battery percentage that is used by the png file.
<?xml version="1.0" encoding="UTF-8"?>
-<level-list xmlns:android="http://schemas.android.com/apk/res/android"><item android:maxLevel="0" android:drawable="@drawable/stat_sys_battery_0"/><item android:maxLevel="1" android:drawable="@drawable/stat_sys_battery_1"/><item android:maxLevel="2" android:drawable="@drawable/stat_sys_battery_2"/><item android:maxLevel="3" android:drawable="@drawable/stat_sys_battery_3"/><item android:maxLevel="4" android:drawable="@drawable/stat_sys_battery_4"/><item android:maxLevel="5" android:drawable="@drawable/stat_sys_battery_5"/><item android:maxLevel="6" android:drawable="@drawable/stat_sys_battery_6"/><item android:maxLevel="7" android:drawable="@drawable/stat_sys_battery_7"/><item android:maxLevel="8" android:drawable="@drawable/stat_sys_battery_8"/><item android:maxLevel="9" android:drawable="@drawable/stat_sys_battery_9"/><item android:maxLevel="10" android:drawable="@drawable/stat_sys_battery_10"/><item android:maxLevel="11" android:drawable="@drawable/stat_sys_battery_11"/><item android:maxLevel="12" android:drawable="@drawable/stat_sys_battery_12"/><item android:maxLevel="13" android:drawable="@drawable/stat_sys_battery_13"/><item android:maxLevel="14" android:drawable="@drawable/stat_sys_battery_14"/><item android:maxLevel="15" android:drawable="@drawable/stat_sys_battery_15"/><item android:maxLevel="16" android:drawable="@drawable/stat_sys_battery_16"/><item android:maxLevel="17" android:drawable="@drawable/stat_sys_battery_17"/><item android:maxLevel="18" android:drawable="@drawable/stat_sys_battery_18"/><item android:maxLevel="19" android:drawable="@drawable/stat_sys_battery_19"/><item android:maxLevel="20" android:drawable="@drawable/stat_sys_battery_20"/><item android:maxLevel="21" android:drawable="@drawable/stat_sys_battery_21"/>
When the phone is charging, it uses the stat_sys_battery_charging.xml.
<item android:maxLevel="92">
<animation-list androidneshot="false"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:duration="2000" android:drawable="@drawable/stat_sys_battery_92" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim93" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim94" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim95" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim96" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim97" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim98" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim99" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim100" />
</animation-list>
</item>
<item android:maxLevel="93">
<animation-list androidneshot="false"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:duration="2000" android:drawable="@drawable/stat_sys_battery_93" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim94" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim95" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim96" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim97" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim98" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim99" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim100" />
</animation-list>
</item>
<item android:maxLevel="94">
<animation-list androidneshot="false"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:duration="2000" android:drawable="@drawable/stat_sys_battery_94" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim95" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim96" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim97" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim98" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim99" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim100" />
</animation-list>
</item>
<item android:maxLevel="95">
<animation-list androidneshot="false"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:duration="2000" android:drawable="@drawable/stat_sys_battery_95" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim96" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim97" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim98" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim99" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim100" />
</animation-list>
</item>
<item android:maxLevel="96">
<animation-list androidneshot="false"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:duration="2000" android:drawable="@drawable/stat_sys_battery_96" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim97" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim98" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim99" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim100" />
</animation-list>
</item>
<item android:maxLevel="97">
<animation-list androidneshot="false"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:duration="2000" android:drawable="@drawable/stat_sys_battery_97" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim98" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim99" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim100" />
</animation-list>
</item>
<item android:maxLevel="98">
<animation-list androidneshot="false"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:duration="2000" android:drawable="@drawable/stat_sys_battery_98" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim99" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim100" />
</animation-list>
</item>
<item android:maxLevel="99">
<animation-list androidneshot="false"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:duration="2000" android:drawable="@drawable/stat_sys_battery_99" />
<item android:duration="80" android:drawable="@drawable/stat_sys_battery_charge_anim100" />
</animation-list>
The above item is from a ginger bread based animation. The maxlevel shows the maximum charge level to use the item. The duration is the amount of milliseconds the png file will be displayed, and of course they are displayed in the order typed.
As you can see, editing each item will allow one to change the animation various ways. Some people prefer a completely stock animation (no animation), which has a charging file like this:
<?xml version="1.0" encoding="utf-8"?>
<level-list
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/stat_sys_battery_charge_anim0" android:maxLevel="0" />
<item android:drawable="@drawable/stat_sys_battery_charge_anim1" android:maxLevel="1" />
<item android:drawable="@drawable/stat_sys_battery_charge_anim2" android:maxLevel="2" />
<item android:drawable="@drawable/stat_sys_battery_charge_anim3" android:maxLevel="3" />
<item android:drawable="@drawable/stat_sys_battery_charge_anim4" android:maxLevel="4" />
<item android:drawable="@drawable/stat_sys_battery_charge_anim5" android:maxLevel="5" />
<item android:drawable="@drawable/stat_sys_battery_charge_anim6" android:maxLevel="6" />
<item android:drawable="@drawable/stat_sys_battery_charge_anim7" android:maxLevel="7" />
<item android:drawable="@drawable/stat_sys_battery_charge_anim8" android:maxLevel="8" />
<item android:drawable="@drawable/stat_sys_battery_charge_anim9" android:maxLevel="9" />
<item android:drawable="@drawable/stat_sys_battery_charge_anim10" android:maxLevel="10" />
Alternatively, one could have a stock like animation that shows the battery uncharged icon. This works better if you have png files with the battery percentage on them, which can be easily generated from The ROM Fumbler
<?xml version="1.0" encoding="utf-8"?>
<level-list
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:maxLevel="0">
<animation-list androidneshot="false"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:duration="1500" android:drawable="@drawable/stat_sys_battery_charge_anim0" />
<item android:duration="500" android:drawable="@drawable/stat_sys_battery_0" />
</animation-list>
</item>
<item android:maxLevel="1">
<animation-list androidneshot="false"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:duration="1500" android:drawable="@drawable/stat_sys_battery_charge_anim1" />
<item android:duration="500" android:drawable="@drawable/stat_sys_battery_1" />
</animation-list>
</item>
<item android:maxLevel="2">
<animation-list androidneshot="false"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:duration="1500" android:drawable="@drawable/stat_sys_battery_charge_anim2" />
<item android:duration="500" android:drawable="@drawable/stat_sys_battery_2" />
</animation-list>
</item>
<item android:maxLevel="3">
<animation-list androidneshot="false"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:duration="1500" android:drawable="@drawable/stat_sys_battery_charge_anim3" />
<item android:duration="500" android:drawable="@drawable/stat_sys_battery_3" />
</animation-list>
</item>
<item android:maxLevel="4">
<animation-list androidneshot="false"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:duration="1500" android:drawable="@drawable/stat_sys_battery_charge_anim4" />
<item android:duration="500" android:drawable="@drawable/stat_sys_battery_4" />
</animation-list>
</item>
If you are moding a stock ROM to have the 1% mod, then you need to edit the xml files, and also add the png icon files to the folder res\drawable-xhdpi. But this can vary from ROM to ROM. These battery mods can be customized in The ROM fumbler, or swiped from a MOD or ROM systemUI.apk. If you are swiping, then please give credit if you are going to distribute it.
Below you will find several mods. I have been using MOAR for a while, so I know that each of the mods beginning with MOAR work on my version of this ROM. Basically, to make these, I pulled compiled the systemUI of the xml files, and then put the compiled xml files into the universal flasher morph folder (swiped from OlliG with permission).
For the MD4 files, I only tested the MD4stock100batterymod.zip file, but I made the others following the same procedure. Of note, any SystemUI.apk mods will be overwritten if you are using a a moded ROM.
The MOAR mods are safe to flash on moded ROMs. They do not affect other mods. However, I only tested on my own MOAR ROM, so I don't know if they work on other ROMs. However, I think so long as you back up, it's worth a try if you are looking to change up that battery icon.
Awesome job
Sent from my SPH-L710 using xda premium
Is there a way to tell the charging animation to start at the current battery level vs going all the way back to zero and going up?
Rocking a morphed GS3!
Card carrying Morphologist
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Well done
------------------------
Sprint Galaxy S3
Whiplashh Rom
Look it up. :trooper:
Yes, we can make the animations any way we want. This is like the gingerbread animation file. I'll post the xml file for you. i don't know off hand of any shortcuts to rearrange the line orders. You can do that part and if you have trouble compiling it let me know and I'll do that part.
Here is a link:
http://db.tt/0iPnBqWt
Edit: I bet we could use Excel to more easily manipulate the lines. I have to think about it.
Sent from my SPH-L710 using xda app-developers app
Nice write up!
check out our rom website, http://updater.team-nocturnal.com/labrats/
studentjunk said:
Yes, we can make the animations any way we want. This is like the gingerbread annulation file. I'll post the xml file for you. i don't know off hand of any shortcuts to rearrange the line orders. You can do that part and if you have trouble compiling it let me know and I'll do that part.
Here is a link:
http://db.tt/0iPnBqWt
Edit: I bet we could use Excel to more easily manipulate the lines. I have to think about it.
Sent from my SPH-L710 using xda app-developers app
Click to expand...
Click to collapse
So the file does not appear complete but from what I see you have to code the animation for every battery state. That will be a lot of copy paste but doable. I run MOAR and have no issues with decompile or compiling I may give this a go on my weekend.
Rocking a morphed GS3!
Card carrying Morphologist
tmcwilliam01 said:
So the file does not appear complete but from what I see you have to code the animation for every battery state. That will be a lot of copy paste but doable. I run MOAR and have no issues with decompile or compiling I may give this a go on my weekend.
Rocking a morphed GS3!
Card carrying Morphologist
Click to expand...
Click to collapse
Correct. The xml needs to be redone before compiling. I will require a lot of work. I haven't seen anyone with an animation that way, so it would have to be made. The file is the same file for the gb mod, which seemed to work. It should be complete, just going the opposite from how you want it - going from the battery level to 100 instead of to zero, which is what you want.
studentjunk said:
Correct. The xml needs to be redone before compiling. I will require a lot of work. I haven't seen anyone with an animation that way, so it would have to be made. The file is the same file for the gb mod, which seemed to work. It should be complete, just going the opposite from how you want it - going from the battery level to 100 instead of to zero, which is what you want.
Click to expand...
Click to collapse
I must have said it wrong before. I want it to go from the existing battery level to 100. Right now it goes from zero to 100 no matter what the level is.
Rocking a morphed GS3!
Card carrying Morphologist
So you are currently using the MOAR animation. Make a backup and flash the GB file.
It's based on the xml file I linked, and seemed to work okay when I tested it. I only tried for a minute though, so report back if there is a problem.
Sent from my SPH-L710 using xda app-developers app
studentjunk said:
So you are currently using the MOAR animation. Make a backup and flash the GB file.
It's based on the xml file I linked, and seemed to work okay when I tested it. I only tried for a minute though, so report back if there is a problem.
Sent from my SPH-L710 using xda app-developers app
Click to expand...
Click to collapse
It works perfectly thank you. That looks so much better running the castaway battery.
Rocking a morphed GS3!
Card carrying Morphologist
Glad to hear it works
Sent from my SPH-L710 using xda app-developers app
Can someone one post a screen shot by any chance?
stock with goodies. anthraxed!
bog3nator said:
Can someone one post a screen shot by any chance?
stock with goodies. anthraxed!
Click to expand...
Click to collapse
A screen shot isn't good enough. These are animations. I haven't figured out an easy way to show animations from the phone. Easiest that I know of would be to nandroid backup and flash a couple to see. What are you running on your phone?
studentjunk said:
A screen shot isn't good enough. These are animations. I haven't figured out an easy way to show animations from the phone. Easiest that I know of would be to nandroid backup and flash a couple to see. What are you running on your phone?
Click to expand...
Click to collapse
I am running stock md4 with rejects 4 in 1 reboot and device status = normal mod. Is the stock one have the battery % mod on the icon?
stock with goodies. anthraxed!
You may have to flash your mods again after flashing this. The icon has battery percents on them. I used my favorite from the ROM fumbler. Simple battery, I think it's called. The version 26 of the ROM fumbler should have a completely stock battery if you didn't want to change that. Flashing a battery mod from the ROM fumbler wouldn't mess up any other mods.
Sent from my SPH-L710 using xda app-developers app

[MOD][GUIDE]25 Easy Grid Toggles (COPY PASTE WORK!)(NoobFriendly)(2.3+)(Update)

HOW TO PORT 25 GRID TOGGLES!
With ease!
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
As many people know porting the lidroid toggles to you're stock device is a lot of work especially when u port the grid toggles.
why ?
because these toggles all needs you to add all ids and such and then in all smali you need to fix 0x730254 etc values.
BUT NOW!!! that time is over i have been working on these toggles for a few days now and its set so it will get all values etc with only packagename
so you only need to copy paste the stuff i say you to
SCREENS:
REQUIREMENT:
- BRAIN
- Patient
- Know how to decompile/recompiling Apk file
- notepad++
- Tool for decompiling, : apkmanager/apktool/Virtous/apkmultitools/ etc,
1. Decomple SystemUI.apk
/res/values/ids.xml
Add the following values to ids.xml
Code:
<item type="id" name="spomc_toggle_toggle_button">false</item>
<item type="id" name="spomc_toggle_icon_button">false</item>
<item type="id" name="spomc_toggle_text_button">false</item>
2. SystemUI/res/values/strings.xml
Add the following strings to strings.xml
Code:
<string name="spomc_always_use_accessory">Use by default for this USB accessory</string>
<string name="spomc_bt">BT</string>
<string name="spomc_data">Data</string>
<string name="spomc_rotate">Rotate</string>
<string name="spomc_wifi">Wi-Fi</string>
<string name="spomc_gps">GPS</string>
<string name="spomc_wifiap">Wi-Fi AP</string>
<string name="spomc_airplane">Airplane</string>
<string name="spomc_vibrate">Vibrate</string>
<string name="spomc_silent">Silent</string>
<string name="spomc_torch">Torch</string>
<string name="spomc_sync">Sync</string>
<string name="spomc_settings">Settings</string>
<string name="spomc_control">Controller</string>
<string name="spomc_ram">Clear RAM</string>
<string name="spomc_brightness">Brightness</string>
<string name="spomc_weather">Weather</string>
<string name="spomc_volumes">Volume</string>
<string name="spomc_widgets">Widget</string>
<string name="spomc_reboot">Reboot</string>
<string name="spomc_battery">Battery</string>
<string name="spomc_troll">Troll</string>
<string name="spomc_flash">Flash</string>
<string name="spomc_prev">Previous</string>
<string name="spomc_next">Next</string>
<string name="spomc_play">Play/Pause</string>
<string name="spomc_sleep">Sleep</string>
<string name="spomc_default_wifi">WIFI</string>
<string name="spomc_default_bt">BT</string>
<string name="spomc_default_gps">GPS</string>
<string name="spomc_default_rotate">ROTATE</string>
<string name="spomc_default_vibrate">VIBRATE</string>
<string name="spomc_default_control">CONTROL</string>
<string name="spomc_default_sync">SYNC</string>
<string name="spomc_default_data">DATA</string>
<string name="spomc_default_silent">SILENT</string>
<string name="spomc_default_settings">SETTINGS</string>
<string name="spomc_default_airplane">AIRPLANE_MODE</string>
<string name="spomc_default_ram">CLEAR_RAM</string>
<string name="spomc_default_brightness">BRIGHTNESS</string>
<string name="spomc_default_weather">WEATHER</string>
<string name="spomc_default_volumes">VOLUMES</string>
<string name="spomc_default_widgets">WIDGETS</string>
<string name="spomc_default_reboot">REBOOT</string>
<string name="spomc_default_battery">BATTERY</string>
<string name="spomc_default_troll">TROLL</string>
<string name="spomc_default_flash">FLASH</string>
<string name="spomc_default_prev">PREV</string>
<string name="spomc_default_next">NEXT</string>
<string name="spomc_default_play">PLAY</string>
<string name="spomc_default_sleep">SLEEP</string>
<string name="spomc_default_profile">PROFILE</string>
<string name="spomc_default_cpu">CPU</string>
3. SystemUI/res/values/styles.xml
Add the following strings to styles.xml
Code:
<style name="brucekey_icon">
<item name="android:disabledAlpha">?android:disabledAlpha</item>
<item name="android:background">@drawable/togglebtn_bg</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
</style>
3. Copy paste the Attached Content.zip to ur systemui/
This will add the resources,arrays.xml,layout and toggle smali's
4. SystemUI/res/layout/**** any layout you want.
add the following in it to load the toggles.
Code:
<com.spacey.xperiatabs.toggles.TogglesView android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content" />
5. Now compile the systemui.apk and it should be working
6. Add the ToggleSettings.apk to system/app
BUGS:
Data toggle Possibly working not sure yet
DONT! change any png names or string names etc it wont work
Profile Picture and Name are set blank if u select it pres sthe toggle and edit it to ur name and a picture. the picture will appear if you reboot.
CREDITS:
AuliaYF
AOKP
CM
TentenPonce
TuxKids
Aryne
Potato Bro's
MOSP team
SonyXperiaZ2 for toggle pngs
Dedy Prayetno
SpaceCaker ofcourse!
Attachements:
Content.zip dl link https://dl.dropboxusercontent.com/u/56034188/toggles/sp/ContentV9.zip
or see bottom of post for attached zip
ToggleSettings dl link https://dl.dropboxusercontent.com/u/56034188/toggles/sp/ToggleSettings.apk
or see bottom of post for attached apk
CHANGELOG:
V9 Ninth release:
10 new toggles! Yeah you heard it right !!! 10 NEW TOGGLES!
Play/Pause, Previous, Next Music buttons.
Cpu Toggle ( shows current cpu speed, update on press)
Profile Toggle ( Change name and Picture)
Reboot toggle
Battery toggle
Troll toggle
Flash Toggle
Sleep Toggle
Scrollview fixation.
Some bugfixes
More ??
V8 Eight release:
Private release this was for testers.
Unreleased on XDA
V7 Seventh release:
Add New Weather Toggle ( Need Google News And Weather app installed Also known as GenieWidget.apk)
Add Volumes Toggle ( Work In Progress ;P )
Brightness Popup Touch outside dialog will close it
Small Bug Fix
V6 Sixth release:
Possible Data on/off fix ( hope it works properly )
Fix Single time open Settings,Control and Brightness only.
Small Bugfixes in toggle code.
V5 Fifth release:
Add Brightness Toggle.
Layout fix for 2row toggles
Brightness Slider PopUp (MUAHHAHAHA Tricky way of doing it but works lol)
FC fix
V4 Fourth release:
Toggle Layout
Toggles JB switch look feel or 4 Row normal toggles
V3 Third release:
Added Reorder method. special thanks to Dedy
V2 Second release:
Added JB api version for collapsestatusbar
now on 4.1+ it will close statusbar onlongclick and settings/control toggle click aswell
V1 Initial Release:
firstbuild
FAQ:
Weather widget not working???:
This is possible cause of you not having set up ur location in Google News and Weather app.
You also might not have GenieWidget.apk installed. Try the attached apk
Profile Picture not working or updating???:
This is being worked on as of now reboot device or restart systemui to apply change.
Reserved for some crazy modification if ever I have
Thx, its work for my LG P713 (4.1.2)
the_vanya1 said:
Thx, its work for my LG P713 (4.1.2)
Click to expand...
Click to collapse
It should work
Only i think settings and controller toggle and long click wont pull up statusbar automaticly will fix it later
Can you post a screen?
Sent from my C5303 using XDA Free mobile app
Rock !!!
Sent from my Nexus 5 using XDA Premium 4 mobile app
its awesome, but vibration toggle dont work for me
the_vanya1 said:
its awesome, but I dont have the vibration toggle
Click to expand...
Click to collapse
Can u share this L Notification Bar source?
Sent from my Nexus 5 using XDA Premium 4 mobile app
the_vanya1 said:
its awesome, but I dont have the vibration toggle
Click to expand...
Click to collapse
vibrate button is there.
al 12 are
to rearrange currently you need to disable all toggles and enable the toggles one by one in the order you want it.
currently working on a fix for tht tough
SpaceCaker said:
vibrate button is there.
al 12 are
to rearrange currently you need to disable all toggles and enable the toggles one by one in the order you want it.
currently working on a fix for tht tough
Click to expand...
Click to collapse
sorry bro, i mean vibration toggle dont work for me
Mya SeR said:
Can u share this L Notification Bar source?
Sent from my Nexus 5 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Yes, its hdpi
new update only small its just to add better support for 4.1+ and such
the_vanya1 said:
sorry bro, i mean vibration toggle dont work for me
Click to expand...
Click to collapse
maybe you need some of these permissions in ur systemui androidmanifest.xml
Code:
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.MANAGE_NETWORK_POLICY" />
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
<uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
<uses-permission android:name="android.permission.DEVICE_POWER" />
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.GET_TASKS" />
<uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" />
SpaceCaker said:
maybe you need some of these permissions in ur systemui androidmanifest.xml
Code:
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.MANAGE_NETWORK_POLICY" />
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
<uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
<uses-permission android:name="android.permission.DEVICE_POWER" />
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.GET_TASKS" />
<uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" />
Click to expand...
Click to collapse
I think, android 4.1.2 already have it, but all lidroid toggles are work
the_vanya1 said:
I think, android 4.1.2 already have it, but all lidroid toggles are work
Click to expand...
Click to collapse
On my device it works fine and its 4.3
Dunno whats the prob with ur device
Can u logcat it?
Sent from my C5303 using XDA Free mobile app
hi..sir..it's nice ..but it's don't show icon..please look this pic
and this guide work on 4.3?
great bro :highfive:
Myth2014 said:
hi..sir..it's nice ..but it's don't show icon..please look this pic
and this guide work on 4.3?
Click to expand...
Click to collapse
U played with the settings maybe ?
When u select text it will show like that
Or u didnt copy all content from content zip
Sent from my C5303 using XDA Free mobile app
Did you update TogglesSettings app?
the_vanya1 said:
Did you update TogglesSettings app?
Click to expand...
Click to collapse
I didmt update togglesettings app yet
Sent from my C5303 using XDA Free mobile app

[THEME][KK]Transparent (v1, 4. July 2015)

Transparent Theme
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Warning
This theme will not make your Xperia invisible!​
For stock Xperia ROM with ROOT and SUPERUSER MOD.
ALLERT: As with all home cooked: Make a TWRP or CWM backup, just in case. This theme uses styles-overlay. Untill now, only tested on Z1C!
Please report working models. :good:
Dark and Light version
The Dark version is for darker wallpapers.
The Light version is for brighter wallpapers.
Download for KitKat
v1 build 12 Dark (4. July 2015): Download from Mediafire
v1 build 02 Light (4. July 2015): Download from Mediafire
Click to expand...
Click to collapse
You are free to use this theme as base for your own theme without my permission.
Screenshoots
Transparent Dark
Transparent Light
The theme explained
What ever wallpaper you set, will show in system apps as dimmed background.
For this to work, windowShowWallpaper has to be set to "true" for the default styles.
The default style for Xperia is Theme.DeviceDefault.Light. By luck windowShowWallpaper is not set in that style, but in the parrent style Theme.Holo.Light. This is great, because I then only have to keep style entries that are not set in Theme.DeviceDefault.Light.
I then just added Theme.Holo.Light to the themed styles.xml and set windowShowWallpaper has to be set to "true":
Code:
<item name="windowShowWallpaper">true</item>
.
The full styles.xml can be seen below:
Code:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Widget.EditText" parent="@android:style/Widget">
<item name="android:textAppearance">@android:style/TextAppearance.Medium.Inverse</item>
<item name="android:textColor">@color/semc_edittext_color_dark</item>
<item name="android:textColorHint">@android:color/hint_foreground_holo_light</item>
<item name="android:textCursorDrawable">@null</item>
<item name="android:gravity">center_vertical</item>
<item name="android:background">@android:drawable/edit_text</item>
<item name="android:focusable">true</item>
<item name="android:focusableInTouchMode">true</item>
<item name="android:clickable">true</item>
</style>
<style name="TextAppearance.DeviceDefault.Widget.EditText" parent="@android:style/TextAppearance.DeviceDefault.Widget">
<item name="android:textColor">@color/semc_edittext_color_dark</item>
<item name="android:textColorHint">@android:color/hint_foreground_holo_light</item>
</style>
<style name="Theme.Holo.Light" parent="@android:style/Theme.Light">
<item name="android:colorForeground">@android:color/bright_foreground_holo_light</item>
<item name="android:colorBackground">@android:color/background_holo_light</item>
<item name="android:backgroundDimAmount">0.6</item>
<item name="android:disabledAlpha">0.5</item>
<item name="android:textColorPrimaryDisableOnly">@android:color/primary_text_disable_only_holo_light</item>
<item name="android:textColorSecondaryInverse">@android:color/secondary_text_holo_dark</item>
<item name="android:textColorPrimaryNoDisable">@android:color/primary_text_nodisable_holo_light</item>
<item name="android:textColorSecondaryNoDisable">@android:color/secondary_text_nodisable_holo_light</item>
<item name="android:textColorPrimaryInverseNoDisable">@android:color/primary_text_nodisable_holo_dark</item>
<item name="android:textColorSecondaryInverseNoDisable">@android:color/secondary_text_nodisable_holo_dark</item>
<item name="android:textColorHintInverse">@android:color/hint_foreground_holo_dark</item>
<item name="android:textCheckMark">@android:drawable/indicator_check_mark_light</item>
<item name="android:textCheckMarkInverse">@android:drawable/indicator_check_mark_dark</item>
<item name="android:galleryItemBackground">@android:drawable/gallery_item_background</item>
<item name="android:listPreferredItemHeight">64.0dip</item>
<item name="android:expandableListPreferredItemPaddingLeft">40.0dip</item>
<item name="android:expandableListPreferredChildPaddingLeft">?android:expandableListPreferredItemPaddingLeft</item>
<item name="android:expandableListPreferredItemIndicatorLeft">3.0dip</item>
<item name="android:expandableListPreferredItemIndicatorRight">0.0dip</item>
<item name="android:expandableListPreferredChildIndicatorLeft">?android:expandableListPreferredItemIndicatorLeft</item>
<item name="android:expandableListPreferredChildIndicatorRight">?android:expandableListPreferredItemIndicatorRight</item>
<item name="android:windowFrame">@null</item>
<item name="android:windowNoTitle">false</item>
<item name="android:windowIsFloating">false</item>
<item name="android:windowTitleSize">25.0dip</item>
<item name="android:panelFullBackground">@android:drawable/menu_background_fill_parent_width</item>
<item name="android:panelColorForeground">?android:textColorPrimary</item>
<item name="android:panelColorBackground">#ff000000</item>
<item name="android:panelTextAppearance">?android:textAppearance</item>
<item name="android:scrollbarSize">10.0dip</item>
<item name="android:scrollbarThumbHorizontal">@android:drawable/scrollbar_handle_holo_light</item>
<item name="android:scrollbarThumbVertical">@android:drawable/scrollbar_handle_holo_light</item>
<item name="android:scrollbarTrackHorizontal">@null</item>
<item name="android:scrollbarTrackVertical">@null</item>
<item name="android:spinnerStyle">?android:dropDownSpinnerStyle</item>
<item name="android:preferenceLayoutChild">@android:layout/preference_child_holo</item>
<item name="android:textColorHint">@android:color/hint_foreground_holo_light</item>
<item name="android:textColorLink">@android:color/holo_blue_light</item>
<item name="android:colorForegroundInverse">@android:color/bright_foreground_inverse_holo_light</item>
<item name="android:windowFullscreen">false</item>
<item name="android:textColorTertiary">@android:color/tertiary_text_holo_light</item>
<item name="android:textColorTertiaryInverse">@android:color/tertiary_text_holo_dark</item>
<item name="android:listDivider">@android:drawable/list_divider_holo_light</item>
<item name="android:windowSoftInputMode">stateUnspecified|adjustUnspecified</item>
<item name="android:candidatesTextStyleSpans">@android:string/candidates_style</item>
<item name="android:textColorSearchUrl">@android:color/search_url_text_holo</item>
<item name="android:textColorPrimaryInverseDisableOnly">@android:color/primary_text_disable_only_holo_dark</item>
[COLOR="Red"]<item name="android:windowShowWallpaper">true</item>[/COLOR]
<item name="android:scrollbarFadeDuration">250</item>
<item name="android:scrollbarDefaultDelayBeforeFade">300</item>
<item name="android:colorBackgroundCacheHint">@android:drawable/background_cache_hint_selector_holo_light</item>
<item name="android:textSelectHandleLeft">@android:drawable/text_select_handle_left</item>
<item name="android:textSelectHandleRight">@android:drawable/text_select_handle_right</item>
<item name="android:textSelectHandle">@android:drawable/text_select_handle_middle</item>
<item name="android:windowActionBar">true</item>
<item name="android:windowActionModeOverlay">false</item>
<item name="android:actionBarSize">@android:dimen/action_bar_default_height</item>
<item name="android:listDividerAlertDialog">@android:drawable/list_divider_holo_light</item>
<item name="android:textColorAlertDialogListItem">@android:color/primary_text_holo_light</item>
<item name="android:dividerVertical">?android:listDivider</item>
<item name="android:dividerHorizontal">?android:listDivider</item>
<item name="android:fastScrollTrackDrawable">@android:drawable/fastscroll_track_holo_light</item>
<item name="android:textColorHighlightInverse">@android:color/highlighted_text_holo_dark</item>
<item name="android:textColorLinkInverse">@android:color/holo_blue_light</item>
<item name="android:textCursorDrawable">@android:drawable/text_cursor_holo_light</item>
<item name="android:listPreferredItemHeightLarge">80.0dip</item>
<item name="android:listPreferredItemHeightSmall">48.0dip</item>
<item name="android:colorPressedHighlight">@android:color/holo_gray_light</item>
<item name="android:colorLongPressedHighlight">@android:color/holo_gray_bright</item>
<item name="android:colorFocusedHighlight">@android:color/holo_blue_dark</item>
<item name="android:colorActivatedHighlight">@android:color/holo_blue_dark</item>
<item name="android:colorMultiSelectHighlight">@android:color/holo_green_light</item>
<item name="android:actionModeStyle">@android:style/Widget.Holo.Light.ActionMode</item>
<item name="android:actionBarWidgetTheme">@null</item>
<item name="android:actionModeSplitBackground">@android:drawable/cab_background_bottom_holo_light</item>
<item name="android:textAppearanceListItemSmall">?android:textAppearanceMedium</item>
<item name="android:listPreferredItemPaddingLeft">8.0dip</item>
<item name="android:listPreferredItemPaddingRight">8.0dip</item>
<item name="android:searchWidgetCorpusItemBackground">@android:color/search_widget_corpus_item_background</item>
<item name="android:mediaRouteButtonStyle">@android:style/Widget.Holo.Light.MediaRouteButton</item>
<item name="android:listPreferredItemPaddingStart">8.0dip</item>
<item name="android:listPreferredItemPaddingEnd">8.0dip</item>
<item name="android:presentationTheme">@android:style/Theme.Holo.Light.Dialog.Presentation</item>
<item name="android:checkedTextViewStyle">@android:style/Widget.Holo.Light.CheckedTextView</item>
<item name="android:windowOverscan">false</item>
<item name="android:errorMessageBackground">@android:drawable/popup_inline_error_holo_light</item>
<item name="android:errorMessageAboveBackground">@android:drawable/popup_inline_error_above_holo_light</item>
<item name="android:searchResultListItemHeight">58.0dip</item>
<item name="android:dropdownListPreferredItemHeight">?android:listPreferredItemHeightSmall</item>
<item name="android:alertDialogCenterButtons">false</item>
<item name="android:panelMenuIsCompact">true</item>
<item name="android:panelMenuListWidth">250.0dip</item>
<item name="android:panelMenuListTheme">@android:style/Theme.Holo.Light.CompactMenu</item>
<item name="android:gestureOverlayViewStyle">@android:style/Widget.Holo.Light.GestureOverlayView</item>
<item name="android:stackViewStyle">@android:style/Widget.Holo.StackView</item>
<item name="android:numberPickerStyle">@android:style/Widget.Holo.Light.NumberPicker</item>
<item name="android:timePickerStyle">@android:style/Widget.Holo.Light.TimePicker</item>
<item name="android:activityChooserViewStyle">@android:style/Widget.Holo.Light.ActivityChooserView</item>
<item name="android:preferenceFragmentStyle">@android:style/PreferenceFragment.Holo</item>
<item name="android:searchDropdownBackground">@android:drawable/search_dropdown_light</item>
<item name="android:preferenceFrameLayoutStyle">@android:style/Widget.Holo.PreferenceFrameLayout</item>
</style>
</resources>
All the semi-transparent PNGs were made from the stock dark and light PNGs from stock firmware with Pixlr Editor.
I cut out the part that needed to be semi-transparent with Wand or Marquee tool, paste to new layer and set transparancy to 50%, and then Merge down to one layer.
Take good care when editing .9-PNGs, read more in my oooold thread here.
I think the Light version needs to be 25% (that more transparent, 100% = no transparency).
What about for Lollipop @Emperor.dk
You still haven't update to it ?
Sended From My Z3 On Moonwalker Provolution V1.5 To Your Eyes !
Pandemic said:
What about for Lollipop @Emperor.dk
You still haven't update to it ?
Sended From My Z3 On Moonwalker Provolution V1.5 To Your Eyes !
Click to expand...
Click to collapse
LOL... not yet... I'm waiting for next LP version this fall.
Emperor.dk said:
LOL... not yet... I'm waiting for next LP version this fall.
Click to expand...
Click to collapse
Nice, I'm waiting for the next version too
Emperor.dk said:
LOL... not yet... I'm waiting for next LP version this fall.
Click to expand...
Click to collapse
@Emperor.dk
Lol for and again waiting ?! [emoji14]
Come on bro, just make some for LP ^^
Sended From My Z3 On Moonwalker Provolution V1.5 To Your Eyes !
Pandemic said:
@Emperor.dk
Lol for and again waiting ?! [emoji14]
Come on bro, just make some for LP ^^
Sended From My Z3 On Moonwalker Provolution V1.5 To Your Eyes !
Click to expand...
Click to collapse
ha' okay, I'll update my Z1C to LP soon :angel:

[THEMES] TOUCHWIZ KITKAT LAUNCHER [Updated 11-dec-2017]

THEMES FOR TOUCHWIZ KITKAT LAUNCHER
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
For another devs: It's NOT allowed to use anything from THIS THREAD without my permissions!​
Downloads :
envTerpsichora
Click here to download!
Ultimate Iron-Man Edition
Click here to download!
Touchwiz Marshmallow v2
Click here to download!
Material
Click here to download!
MIUI7
Click here to download!
Credits :
Ultimate Iron-Man Edition
@pas2001
Touchwiz Marshmallow
@Albe95
@ManuProN5
@BlackMesa123
Material
@TheArc
envTerpsichora
@envy~
Changelogs :
envTerpsichora
- Initial release
Ultimate Iron-Man Edition
- Initial release
- Big thanks to @pas2001 for the icons
Touchwiz Marshmallow v2
-v1
- Initial release
- Touchwiz marshmallow icons
[ Inspired by @BlackMesa123 @ManuProN5 @Albe95
v1.1
- New video icon ( Thanks to @BlackMesa123 )
- Fixed theme_preview photo
- Fixed Voice Recorder icon
v1.2
- New "gallery" icon
- New "all apps" icon
( thanks to @qareembizzle )
v2.0
- New "my files" icon
- New "setting" icon
- New "video" icon
- New "phone" icon
- New "contact" icon
- New "browser" icon
- New "clock" icon
- New "messages" icon
( thanks to @qareembizzle )
- New "apps backgroud" icon
- New wallpapers
Material
- Initial release
[ Inspired by @TheArc ]
MIUI7
- Initial release
- MIUI7 Icons
Video icon updated:
Download
BlackMesa123 said:
Video icon updated:
Download
Click to expand...
Click to collapse
awesome
Thank you so much for this lovely theme dude! Can my friend use this on his stock note 4 rom ?
xxgsliemrexx said:
Thank you so much for this lovely theme dude! Can my friend use this on his stock note 4 rom ?
Click to expand...
Click to collapse
Yes. Just dont forget to add my name to the "Credits". Thank you
Hyper.Alvi said:
THEMES FOR TOUCHWIZ KITKAT LAUNCHER
#1 TOUCHWIZ MARSHMALLOW v1.1
http://www.mediafire.com/download/kwuy30d4ncw4lxw/Touchwiz_Marshmallow_v1.1.apk
#2 MATERIAL
http://www.mediafire.com/download/gvd11dbympuc152/MATERIAL.apk
#3 MIUI7
http://www.mediafire.com/download/oogxi7wv5q92ubr/MIUI7.apk
Credits
#1 theme
@Albe95
@ManuProN5
@BlackMesa123
FOR THE INSPIRATION
#2 theme
@TheArc
FOR THE INSPIRATION
(Support his theme on playstore)
#3 theme
MIUI ROM ( just amazing )
FOR THE INSPIRATION
#more coming soon
Click to expand...
Click to collapse
Hey bro ur weather widget...can u give me the link???
There's an issue with touchwiz marshmallow: SVoice's icon and voice recorder's icon are the same.
!
@Hyper.Alvi
Could you share your launcher with shadows under the icons, pleaase?
lolo77_FR said:
There's an issue with touchwiz marshmallow: SVoice's icon and voice recorder's icon are the same.
Click to expand...
Click to collapse
Will fix it in the next update
n3eskon said:
@Hyper.Alvi
Could you share your launcher with shadows under the icons, pleaase?
Click to expand...
Click to collapse
Soon, maybe I will do a theme for the Eclipse Rom and the laucher with be included
The mod required to get shadows for dock icons is
<style name="BaseHotseatIcon">
<item name="android:textColor">#ffffffff</item>
<item name="android:gravity">top|center</item>
<item name="android:layout_gravity">top|center</item>
<item name="android:background">@drawable/icon_shadow_home</item> <=======set this as a shadow image
Hyper.Alvi said:
Soon, maybe I will do a theme for the Eclipse Rom and the laucher with be included
Click to expand...
Click to collapse
Weather widget broooo!!!!
josephpatrick said:
The mod required to get shadows for dock icons is
<style name="BaseHotseatIcon">
<item name="android:textColor">#ffffffff</item>
<item name="android:gravity">top|center</item>
<item name="android:layout_gravity">top|center</item>
<item name="android:background">@drawable/icon_shadow_home</item> <=======set this as a shadow image
Click to expand...
Click to collapse
Thank you, but which file am I supposed to edit?
And is there no way to get shadows for every icon on the homescreen?
n3eskon said:
Thank you, but which file am I supposed to edit?
And is there no way to get shadows for every icon on the homescreen?
Click to expand...
Click to collapse
it is in styles.xml, you need to use a png file which has a shadow like the one attached, you need to edit the styles used for home icons and dock icons and menu icons for e.g.
<style name="BaseHomeIcon">
<item name="android:textColor">#ffffffff</item>
<item name="android:gravity">top|center</item>
<item name="android:layout_gravity">top|center</item>
<item name="android:background">@drawable/icon_shadow_home</item>
<item name="android:focusable">true</item>
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:shadowColor">#dd000000</item>
<item name="android:shadowDy">2.0</item>
<item name="android:shadowRadius">4.0</item>
<item name="destination">home</item>
</style>
<style name="BaseHotseatIcon">
<item name="android:textColor">#ffffffff</item>
<item name="android:gravity">top|center</item>
<item name="android:layout_gravity">top|center</item>
<item name="android:background">@drawable/icon_shadow_home</item>
<item name="android:focusable">true</item>
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:shadowColor">#dd000000</item>
<item name="android:shadowDy">2.0</item>
<item name="android:shadowRadius">4.0</item>
<item name="destination">home</item>
</style>
<style name="BaseMenuIcon">
<item name="android:textColor">#ffffffff</item>
<item name="android:gravity">top|center</item>
<item name="android:layout_gravity">top|center</item>
<item name="android:background">@drawable/icon_shadow_home</item>
<item name="android:focusable">true</item>
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:shadowColor">#dd000000</item>
<item name="android:shadowDy">2.0</item>
<item name="android:shadowRadius">2.0</item>
<item name="destination">menu</item>
</style>
Work on galaxy s3 neo 4.4.4 stock rom ??
Sent from my GT-I9300I using XDA Free mobile app
josephpatrick said:
it is in styles.xml, you need to use a png file which has a shadow like the one attached, you need to edit the styles used for home icons and dock icons and menu icons for e.g.
<style name="BaseHomeIcon">
<item name="android:textColor">#ffffffff</item>
<item name="android:gravity">top|center</item>
<item name="android:layout_gravity">top|center</item>
<item name="android:background">@drawable/icon_shadow_home</item>
<item name="android:focusable">true</item>
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:shadowColor">#dd000000</item>
<item name="android:shadowDy">2.0</item>
<item name="android:shadowRadius">4.0</item>
<item name="destination">home</item>
</style>
<style name="BaseHotseatIcon">
<item name="android:textColor">#ffffffff</item>
<item name="android:gravity">top|center</item>
<item name="android:layout_gravity">top|center</item>
<item name="android:background">@drawable/icon_shadow_home</item>
<item name="android:focusable">true</item>
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:shadowColor">#dd000000</item>
<item name="android:shadowDy">2.0</item>
<item name="android:shadowRadius">4.0</item>
<item name="destination">home</item>
</style>
<style name="BaseMenuIcon">
<item name="android:textColor">#ffffffff</item>
<item name="android:gravity">top|center</item>
<item name="android:layout_gravity">top|center</item>
<item name="android:background">@drawable/icon_shadow_home</item>
<item name="android:focusable">true</item>
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:shadowColor">#dd000000</item>
<item name="android:shadowDy">2.0</item>
<item name="android:shadowRadius">2.0</item>
<item name="destination">menu</item>
</style>
Click to expand...
Click to collapse
hii.. can I add this in the launcher that I am working on ??
LAzY_kRAzY said:
hii.. can I add this in the launcher that I am working on ??
Click to expand...
Click to collapse
yes, very much
josephpatrick said:
it is in styles.xml, you need to use a png file which has a shadow like the one attached, you need to edit the styles used for home icons and dock icons and menu icons for e.g.
<style name="BaseHomeIcon">
<item name="android:textColor">#ffffffff</item>
<item name="android:gravity">top|center</item>
<item name="android:layout_gravity">top|center</item>
<item name="android:background">@drawable/icon_shadow_home</item>
<item name="android:focusable">true</item>
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:shadowColor">#dd000000</item>
<item name="android:shadowDy">2.0</item>
<item name="android:shadowRadius">4.0</item>
<item name="destination">home</item>
</style>
<style name="BaseHotseatIcon">
<item name="android:textColor">#ffffffff</item>
<item name="android:gravity">top|center</item>
<item name="android:layout_gravity">top|center</item>
<item name="android:background">@drawable/icon_shadow_home</item>
<item name="android:focusable">true</item>
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:shadowColor">#dd000000</item>
<item name="android:shadowDy">2.0</item>
<item name="android:shadowRadius">4.0</item>
<item name="destination">home</item>
</style>
<style name="BaseMenuIcon">
<item name="android:textColor">#ffffffff</item>
<item name="android:gravity">top|center</item>
<item name="android:layout_gravity">top|center</item>
<item name="android:background">@drawable/icon_shadow_home</item>
<item name="android:focusable">true</item>
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:shadowColor">#dd000000</item>
<item name="android:shadowDy">2.0</item>
<item name="android:shadowRadius">2.0</item>
<item name="destination">menu</item>
</style>
Click to expand...
Click to collapse
Please note that this is not my idea or work, if I remember right, it may have been part of the touchwiz launcher included in the S6 port ROM from Romancy.......
Thanks for Marshmallow Icons! They are beautiful!

Categories

Resources