Hi guys
I know that this question has been asked 1000+++ times before.
But I can't find a solution for mine in any of those threads.
I'm running AOKP B27 on my Galaxy Nexus and I would like to mod the SystemUI
to my needs. As you might know, AOKP added a feature that you have a weather
window when your status bar is expanded.
That aside, when I expand my status bar, all text is ICS blue.
I want to change that and make all text white.
I've managed to make the carrier text and date white. Now I need the weather text
and all toggles text in white.
Any idea where I can change that? I've searched troughout the many .xml files
in it but I can't find it!
Thanks in advance
diSke
I can't remember if it is in systemui or framework but its a value called "ticker"
Sent from my Galaxy Nexus using xda premium
MR H3LLMAN said:
I can't remember if it is in systemui or framework but its a value called "ticker"
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
99% sure its in the framework-Res.apk
Sent from my Galaxy Nexus using Tapatalk
runandhide05 said:
99% sure its in the framework-Res.apk
Sent from my Galaxy Nexus using Tapatalk
Click to expand...
Click to collapse
It is. I just checked.
Sent from my Galaxy Nexus using xda premium
systemUi.apk\res\values\styles.xml and there will be 3 lines that reference @blueholo bla bla bla just add in #ffffffff hex value for the white text.
what line looks like after edit... <item name="android:textColor">#ffffffff</item>
now the weather text is prolly handled by smali/java.
good day.
MR H3LLMAN said:
It is. I just checked.
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
What's the path name? I can't find "Ticker" anywhere in framework-res
Thanks
chopper the dog said:
systemUi.apk\res\values\styles.xml and there will be 3 lines that reference @blueholo bla bla bla just add in #ffffffff hex value for the white text.
what line looks like after edit... <item name="android:textColor">#ffffffff</item>
now the weather text is prolly handled by smali/java.
good day.
Click to expand...
Click to collapse
Yes I knew that. That's how I changed date and carrier text.
But how do I have to edit the toggles and weather text?
If it's in smali/java, how do I mod that?
chopper the dog said:
systemUi.apk\res\values\styles.xml and there will be 3 lines that reference @blueholo bla bla bla just add in #ffffffff hex value for the white text.
what line looks like after edit... #ffffffff
now the weather text is prolly handled by smali/java.
good day.
Click to expand...
Click to collapse
This is how u do it
Sent from my Galaxy Nexus using xda premium
My bad its in framework Res styles
Window something.. text is all white ffffffff its about 1/8 down the page
Might b called window tile or window view I can't remember exactly
Sent from my Galaxy Nexus using xda premium
The other value to check is systemui values drawable ticker
Sent from my Galaxy Nexus using xda premium
Kevin3328 said:
Might b called window tile or window view I can't remember exactly
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
Can't find it anywhere...
In framework Res... values... styles folder open it up scroll down until you see the first hex value #ffffffff it might be called window dialogue or something its there I made a couple themes already with all text in status bar and drop down changed
Sent from my Galaxy Nexus using xda premium
Code:
<style name="TextAppearance.WindowTitle" parent="@style/TextAppearance">
<item name="textSize">14.0sp</item>
<item name="textStyle">bold</item>
<item name="textColor">#ffffffff</item>
</style>
Is that the one? It's the second hex value in the document.
Because the first is about panelcolorbackground which I assume has nothing to do with text?
chopper the dog said:
systemUi.apk\res\values\styles.xml and there will be 3 lines that reference @blueholo bla bla bla just add in #ffffffff hex value for the white text.
what line looks like after edit... <item name="android:textColor">#ffffffff</item>
now the weather text is prolly handled by smali/java.
good day.
Click to expand...
Click to collapse
This may/may not be an old thread, but here's what I did. I took and decompiled the SystemUI.apk so I can edit the xml files. I found the styles.xml file in the \res\values folder. I want to change my status bar text to blue instead of grey... I changed all of the @blueholo lines to the #FF1E90FF which is the color I picked. Now, I recompiled, put it on my phone, and before I rename it/get it ready to go, I want to make sure of something... the original apk file is 2.47MB, the new one - only editing a few lines of code - is 1.82MB. Confused as to why just a few lines of code would be almost 1 MB of data, where it should only be a few kb... Is this going to screw something up?? Please, no answers like "Install and find out"... It's a brand new Note 2
svavrek said:
Please, no answers like "Install and find out"... It's a brand new Note 2
Click to expand...
Click to collapse
How about "Nandroid, then install and find out?"
How did u decompile.. Did u use apktool
Sent from my Galaxy Nexus using xda premium
Related
Im working on a theme, and i've successfully themed the status bar, but i need to know how to change the color of the font on the status bar and in the drop down menu to black. I can't seem to find what lines to edit in the status_bar.xml using my hex editor. Any help would be greatfully appreciated. Thanks.
Go check out the vibrant themes section.. I have a sticky for metamorph.. There is a tutorial how to manually change xmls for font color...
I'm going to tell you u couldn't get the clock to change in the vibrant.. i could change the date but not the clock.. We have actually changed everything but the time...
Tmo did something with our framework so it may just be the vibrant but idk...
God luck..any questions pm me
Sent from my SGH-T959 using XDA App
Figured it out earlier today, thanks though.
Sent from my SPH-D700 using XDA App
So did you get the clock changed?
My phone has been flashed more than Girls Gone Wild...
junkdruggler said:
So did you get the clock changed?
My phone has been flashed more than Girls Gone Wild...
Click to expand...
Click to collapse
Yes. I modded my rom to have an aosp theme. Including the white status bar so i needed to know how to make the text font color black.
Sent from my SPH-D700 using XDA App
bubby323 said:
Yes. I modded my rom to have an aosp theme. Including the white status bar so i needed to know how to make the text font color black.
Sent from my SPH-D700 using XDA App
Click to expand...
Click to collapse
Wish someone would do a clear status bar....like riptide did on the evo
Sent from my SPH-D700 using Tapatalk
How to manually edit services.jar for text color
http://forum.xda-developers.com/showthread.php?t=630267
You are looking for lines 502 dateview, 513 mSpnlabel, & 514 mPlmnlabel
Just add the color change line and the color you want it...
My phone has been flashed more than Girls Gone Wild...
As the title says where can i change the main memu font color?
As you can see from the screen shot the text is black on black & its really hard to read i just want to change the hex color code to 0xFFFFFFFF White
DON'T tell me to search cuz i just did & i searched for about 4 hours last night (when xda was down) looking on google & AC. I did find an other person with the same problem http://forums.androidcentral.com/ep...0-how-do-i-change-font-color.html#post1422040
Some one said it was in values/styles.xml in the framework-res.apk. But i unziped the apk with 7zip & searched the folder & did not find styles.xml
I'm trying to fix Shake & Bake Mix up 5.9 NO lock mod
Also any pointers on repacking the apk. Or if you just feel like doing it your self thats cool. but i do want to lean more about it. So be detailed if you can
I have been reading http://forum.xda-developers.com/showthread.php?t=821638&highlight=guide .
You can't find that xml by unzipping the framework. You have to decompile it. It's definitely in the framework in that xml though.
Sent from my SPH-D700 using Tapatalk
WOW that was fast
With APK Manager 4.9? will that work?
Should. Read up on how it works though, there should be a thread for it, gl.
Sent from my SPH-D700 using Tapatalk
Code:
<style name="WindowTitle">
<item name="textAppearance">@style/TextAppearance.WindowTitle</item>
<item name="singleLine">true</item>
<item name="shadowColor">[COLOR="Red"]#ff000000[/COLOR]</item>
<item name="shadowDx">-1.0</item>
<item name="shadowDy">-1.0</item>
<item name="shadowRadius">0.3</item>
</style>
Does any one know if the red is the right line?
I believe that's black, and I believe it may be the correct one. Best way to find out is try and test it.
Sent from my SPH-D700 using Tapatalk
Yea I believe the first two characters are transparency level. Then the rest is the color hex value.
Sent from my SPH-D700 using Tapatalk
Any one knows how to change text color (in settings, etc..) to blue (33b5e5 actually, it is ICS color afaik) ?
Thanks in advance
Laynee1 said:
Any one knows how to change text color (in settings, etc..) to blue (33b5e5 actually, it is ICS color afaik) ?
Thanks in advance
Click to expand...
Click to collapse
Its an XML edit im not sure which one but you would have to decompile the Settings.apk make the edit in the Colors.xml then recompile.
Laynee1 said:
Any one knows how to change text color (in settings, etc..) to blue (33b5e5 actually, it is ICS color afaik) ?
Thanks in advance
Click to expand...
Click to collapse
The edit is actually in the framework-res apk. I'll let you know exactly where when I get home
Sent from my Galaxy Nexus using xda premium
Oh he meant the system color. That a the Holo_Blue_Light which is 33b5e5.
Sent from my Galaxy Nexus using xda premium
ÜBER™ said:
Oh he meant the system color. That a the Holo_Blue_Light which is 33b5e5.
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
Yes, as i stated in my first post 33b5e5. How to change system color into that color ?
Any news here?
I really like to have that Infos too.
Afaik its in the "\framework-res\res\values\styles.xml" !?
But where there? What Strings??
Does anybody knkw the file in systemui.apk and values to change to disable left side notification tint on statusbar?
Sent from my SPH-L900 using xda premium
i wish this was permanently deleted on all roms. That tint does not make sense
I personally like the way it makes the notification icons look...
Sent from my SPH-L900 using xda app-developers app
I have weatherbug app and its shows temp there dull as hell. Ive had rom with tint removed and I could see it from 5 ft away. I got the files to do now just need to do
Sent from my SPH-L900 using xda premium
Jsarge45 said:
I have weatherbug app and its shows temp there dull as hell. Ive had rom with tint removed and I could see it from 5 ft away. I got the files to do now just need to do
Sent from my SPH-L900 using xda premium
Click to expand...
Click to collapse
whats the files locations?
samevo said:
whats the files locations?
Click to expand...
Click to collapse
Decompile systemui.apk
In vaules folder
Status bar icon edit to 100% dimens.xml
Tw status bar icon edit same as above
I have been haveing troubles with apktool and apk manager so if you're more lucker then me can you pass alomg a zip
Sent from my SPH-L900 using xda premium
Jsarge45 said:
Decompile systemui.apk
In vaules folder
Status bar icon edit to 100% dimens.xml
Tw status bar icon edit same as above
I have been haveing troubles with apktool and apk manager so if you're more lucker then me can you pass alomg a zip
Sent from my SPH-L900 using xda premium
Click to expand...
Click to collapse
what rom your trying to mod cause ill do it for you
mackentosh said:
what rom your trying to mod cause ill do it for you
Click to expand...
Click to collapse
Im on lk8 stock deox now.. b4 update leak I was running your rom but I kinda want to just tweak lil things and keep kinda stock for now so yea. Stock lk8 deox.
Last night I was trying again with apktool and when decompiling systemui, framework-res.apk and twframework-res.apk only twframework would install in prompt. I trued from link you supplied and found another on youtube with vid tut. So after tring to decompile the systemUI
Sent from my SPH-L900 using xda premium
Fcuk hit send button..
In the systemUI folder that pops up in apktool folder there was only smali folder. No manifest no res nothing just smali.. I deleted and retried like 12 times with different rom bases. I even tried yours to just see where edits where made maybe thinking I could make zip but nothing worked. The closest I got was with apk manager. Im dumb though and just literally installed notepad++ now. Wish I had yesterday. My desktop looks like my kids room. Lol
Sent from my SPH-L900 using xda premium
I want to remove tint, remove am pm. Change thickness of lockscreen clock.. dumb sh*t ...
Kinda play around..
That andriod kitchen was waste of time too
Sent from my SPH-L900 using xda premium
Jsarge45 said:
I want to remove tint, remove am pm. Change thickness of lockscreen clock.. dumb sh*t ...
Kinda play around..
That andriod kitchen was waste of time too
Sent from my SPH-L900 using xda premium
Click to expand...
Click to collapse
Have you tried the drawables.xml?
<item type="drawable" name="notification_icon_area_smoke">#aa000000</item>
shiftr182 said:
Have you tried the drawables.xml?
<item type="drawable" name="notification_icon_area_smoke">#aa000000</item>
Click to expand...
Click to collapse
I havent because I didn't know what to edit in drawables. Only had info for vaules.
So in drawables whats the edit to remove. AA TO OO?
Sent from my SPH-L900 using xda premium
Jsarge45 said:
I havent because I didn't know what to edit in drawables. Only had info for vaules.
So in drawables whats the edit to remove. AA TO OO?
Sent from my SPH-L900 using xda premium
Click to expand...
Click to collapse
Thats what I would do.
Jsarge45 said:
I havent because I didn't know what to edit in drawables. Only had info for vaules.
So in drawables whats the edit to remove. AA TO OO?
Sent from my SPH-L900 using xda premium
Click to expand...
Click to collapse
Change aa to ff to remove transparency and make it bright white again
Sent from my SPH-L900 using Xparent ICS Tapatalk 2
What tint are you talking about? I don't notice it.
There is a tint of your notifications that come in the top left of the screen. I believe it takes away a lot of the good looks of touchwiz roms. When the tint is removed I believe it looks so much better
The correct way to do it is decompile the SystemUI.apk, then in the values folder open the dimens.xml.
Edit line 25 and 26 and change the % to 100.0% on both lines and recompile.
Sent from my SPH-L900 using xda app-developers app
Hey bp. Thanks for the response. Any possible way you can make a zipp that can be flashed on touchwiz roms to eliminate the tint? It would be much appreciated!
stu5797 said:
Hey bp. Thanks for the response. Any possible way you can make a zipp that can be flashed on touchwiz roms to eliminate the tint? It would be much appreciated!
Click to expand...
Click to collapse
What ROM are you on, I can make a zip for you.
Sent from my SPH-L900 using xda app-developers app
Wow Thanks so much! Anyway you can do macs rom and project rom?
Hi there.
I'm trying to theme my Contacts.apk because I don't like the default cyan bar at the top. I wanted to apply the same dark gray color, just like in the Mms.apk. I previously was able to do this for my Contacts.apk in JB 4.1.2.
However, when I pushed the Contacts.apk from 4.1.2 to 4.2.1, the dialer would vibrate twice when I press a button (i.e. a number on the dial pad). So, I attempted to recreate the same dark gray color at the top of the bar for the Contacts.apk in 4.2.1.
BUT, the cyan color appears on the selected tab (see attached image). The other parts of the bar are the dark gray color. I decompiled and changed the png files in the drawable xhdpi folder, but is there an xml value that I'm supposed to edit? I didn't edit any xml values when I previously, and successfully, themed my Contact.apk for 4.1.2.
Any advice would help. Thanks everyone
That's going to be an XML in /res/drawable/tab_selected.xml
In currently uses the people holo theme color from res/values/colors.xml
You can also change it to a hex color value using #ffrrggbb
Sent from my Galaxy Nexus using xda app-developers app
suwu10 said:
That's going to be an XML in /res/drawable/tab_selected.xml
In currently uses the people holo theme color from res/values/colors.xml
You can also change it to a hex color value using #ffrrggbb
Sent from my Galaxy Nexus using xda app-developers app
Click to expand...
Click to collapse
Gotcha. Thanks for the tip!!! I'm gonna give it a shot and thank you again if/when it works
Sent from my Galaxy Nexus using XDA