[Req] Transparent Statusbar required for stock rom - Nexus 4 Themes and Apps

Hi,
I need transparent statusbar for Nexus 4 official rom, don't want to use any custom roms. Can somebody help me with this?
Thanks in advance.

Hi, i have requested it some days ago, here is the link: http://forum.xda-developers.com/showthread.php?t=2334362
I think the same of you and at my post i quoted other to explain how to do it at a Samsung galaxy s3, but i have tried to decompile, edit the archives and compile, put in my phone and get a bootloop
Sent from my Nexus 4 using xda app-developers app

llsantiago said:
Hi, i have requested it some days ago, here is the link: http://forum.xda-developers.com/showthread.php?t=2334362
I think the same of you and at my post i quoted other to explain how to do it at a Samsung galaxy s3, but i have tried to decompile, edit the archives and compile, put in my phone and get a bootloop
Sent from my Nexus 4 using xda app-developers app
Click to expand...
Click to collapse
Hey, thanks for your post. Actually, i have also tried to modify couple of SystemUI.apk and Framework-res.apk etc. but none worked correctly or resulted in a bootloop. Hence, we need support from someone experience in these kind modifications. Moreover, i never intended to create a duplicate thread but unfortunately, the search function was not working at that time and I had to create it
Hopefully, someone will help us out in this regard.

lethalfriend said:
Hi,
I need transparent statusbar for Nexus 4 official rom, don't want to use any custom roms. Can somebody help me with this?
Thanks in advance.
Click to expand...
Click to collapse
Do you at least have root?
Sent from my Nexus 4 using xda premium

Yes I do have root
Sent from my C6603 using Tapatalk 4 Beta

lethalfriend said:
Yes I do have root
Sent from my C6603 using Tapatalk 4 Beta
Click to expand...
Click to collapse
Do you want it 100% transparent?
Sent from my Nexus 4 using xda premium

obtained said:
Do you want it 100% transparent?
Sent from my Nexus 4 using xda premium
Click to expand...
Click to collapse
Yes, that would be awesome and thank you so much for helping me out

lethalfriend said:
Yes, that would be awesome and thank you so much for helping me out
Click to expand...
Click to collapse
It's not a problem. Will you send me your systemui.apk?
Sent from my Nexus 4 using xda premium

obtained said:
It's not a problem. Will you send me your systemui.apk?
Sent from my Nexus 4 using xda premium
Click to expand...
Click to collapse
Here you go bro.
https://www.dropbox.com/s/zv9au40he4g0xa7/SystemUI.apk

lethalfriend said:
Here you go bro.
https://www.dropbox.com/s/zv9au40he4g0xa7/SystemUI.apk
Click to expand...
Click to collapse
I modified the image to be transparent, tested it, and it did not work for me on the rom i'm using. But here is a flashable zip. I'd prefer you to make a backup first. For some reason making the status bar transparent just isn't as easy as it used to be...

obtained said:
I modified the image to be transparent, tested it, and it did not work for me on the rom i'm using. But here is a flashable zip. I'd prefer you to make a backup first. For some reason making the status bar transparent just isn't as easy as it used to be...
Click to expand...
Click to collapse
Once again thank you so much for your time and efforts. However, i'll test the attached zip and will post the results as early as possible.

lethalfriend said:
Once again thank you so much for your time and efforts. However, i'll test the attached zip and will post the results as early as possible.
Click to expand...
Click to collapse
Not a problem at all. I hope it works for you.
Sent from my Nexus 4 using xda premium

For me don't works, i'm on stock rom, stock launcher but i tried other launchers.
Thanks
Sent from my Nexus 4 using xda app-developers app

I think you shall hold till 4.3 is out ,and try modifying it.

obtained said:
Not a problem at all. I hope it works for you.
Sent from my Nexus 4 using xda premium
Click to expand...
Click to collapse
Hey bro, finally i have tried it and unfortunately, its not working for me either maybe need to edit some other parameters as well

obtained said:
Not a problem at all. I hope it works for you.
Sent from my Nexus 4 using xda premium
Click to expand...
Click to collapse
You have edited "tw_super_status_bar.XML" and "drawables.xml"?
Thanks for help we.
Sent from my Nexus 4 using xda app-developers app

Someone want to try this one? If this doesn't work then I don't know what will. I've tried one image and a few different xmls and none seem to work.

obtained said:
Someone want to try this one? If this doesn't work then I don't know what will. I've tried one image and a few different xmls and none seem to work.
Click to expand...
Click to collapse
I tried it now, it works, but you have edited the wrong files, maked the notications transparent.
I have a tutorial:
1. You should decompile SystemUI.apk
2. Open /SystemUI/res/layout/tw_super_status_bar.xml and change android:background to 100% transparent:
Code:
<com.android.systemui.statusbar.phone.StatusBarWindowView android:background="#00000000" android:focusable="true" android:fitsSystemWindows="true" android:descendantFocusability="afterDescendants"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui">
3. Save /SystemUI/res/layout/tw_super_status_bar.xml
4. Open /SystemUI/res/values/drawables.xml and edit this line to get transparency you need, for example, 100% transparent:
Code:
<item type="drawable" name="status_bar_background">#00000000</item>
5. Save /SystemUI/res/values/drawables.xml
6. Recompile SystemUI.apk
Done... Now you have 100% transparent homescreen statusbar
A short hint:
#00000000 - 100% transparency
#3F000000 - 75% transparency
#7F000000 - 50% transparency
#BF000000 - 25% transparency
Thaks for helping.

llsantiago said:
I tried it now, it works, but you have edited the wrong files, maked the notications transparent.
I have a tutorial:
1. You should decompile SystemUI.apk
2. Open /SystemUI/res/layout/tw_super_status_bar.xml and change android:background to 100% transparent:
Code:
<com.android.systemui.statusbar.phone.StatusBarWindowView android:background="#00000000" android:focusable="true" android:fitsSystemWindows="true" android:descendantFocusability="afterDescendants"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui">
3. Save /SystemUI/res/layout/tw_super_status_bar.xml
4. Open /SystemUI/res/values/drawables.xml and edit this line to get transparency you need, for example, 100% transparent:
Code:
<item type="drawable" name="status_bar_background">#00000000</item>
5. Save /SystemUI/res/values/drawables.xml
6. Recompile SystemUI.apk
Done... Now you have 100% transparent homescreen statusbar
A short hint:
#00000000 - 100% transparency
#3F000000 - 75% transparency
#7F000000 - 50% transparency
#BF000000 - 25% transparency
Thaks for helping.
Click to expand...
Click to collapse
I decompiled SystemUI.apk and can find no tw_super_status_bar.xml anywhere.
I did edit super_status_bar.xml and drawables.xml but there's no tw_super_status_bar.xml...?

obtained said:
I decompiled SystemUI.apk and can find no tw_super_status_bar.xml anywhere.
I did edit super_status_bar.xml and drawables.xml but there's no tw_super_status_bar.xml...?
Click to expand...
Click to collapse
Sorry, tw super status bar its for touchwiz, but editing that thinks at super_status_bar.XML and drawables.xml like the tutorial i think will work.
Thaks one more time
Sent from my Nexus 4 using xda app-developers app

Related

[THEME] [New update - 01 April 2012] Complete ICS Theme for DDKQ8 Stock rom

Hi Gang,
First ever complete ICS theme
[ Whats new ]
Big headers
White and blue text
Transparent status bar
Vertical batt with % icon
Themed dialer
Blue stats icons
Removed swipe screen to unlock text from lock screen
Sleeked horizontal progress bar
Crt off enabled (enable all/some animations and comment line debug.sf.hw in build.prop)
Blue coloured pop up dividers
Ics animation
Blue text on selection
Transparent music app and gmail app
And much more.
Flash the attached zip normally using cwm5 after mounting system and data. Please take backup of systemui.apk, framework.apk before flashing the zip.
Once again thanks to wanokairoen for letting me use some of his pngs.
New screenshots
Good job.
Sent from my GT-S5830 using xda premium
Thanks guys for liking it.
Themed apps are in the making and should be available by weekend. :what:
Dialer and mms apps are already done. Few more apps remaining.
-Nishu
dose it work on S5830XWKS2
When i get back to PC ill post how to slim down the progress bars so there are ics like
Sent from my SCH-I400 using xda premium
@nisha
Need rood the rom (DDKQ8) or will apply directly through cwm
Shareef17 said:
@nisha
Need rood the rom (DDKQ8) or will apply directly through cwm
Click to expand...
Click to collapse
U got cwm without rooting? U can try..
-Nishu
Would it work on XXKPP?
Sent from my GT-S5830 using XDA
Bebobebo1976 said:
dose it work on S5830XWKS2
Click to expand...
Click to collapse
Mar1u5 said:
Would it work on XXKPP?
Click to expand...
Click to collapse
Probably NOT. but no one can stop you from trying just make a backup first.
nishantmnit said:
Thanks guys for liking it.
Themed apps are in the making and should be available by weekend.
Dialer and mms apps are already done. Few more apps remaining.
Click to expand...
Click to collapse
i made a mod to center the clock on lockscreen. you can use it if you like. (will be uploading it today)
ics horizontals
ciscogee said:
When i get back to PC ill post how to slim down the progress bars so there are ics like
Sent from my SCH-I400 using xda premium
Click to expand...
Click to collapse
i tried to edit your framework-res in your theme to slim down horizontals.
here is the code:
make edits in frameworks-res/res/values/styles.xml
lines 357 - 373
copy and paste this over those lines:
<style name="Widget.ProgressBar.Horizontal" parent="@style/Widget.ProgressBar">
<item name="maxHeight">4.0dip</item>
<item name="indeterminateOnly">false</item>
<item name="indeterminateDrawable">@drawable/progress_indeterminate_horizontal</item>
<item name="progressDrawable">@drawable/progress_horizontal</item>
<item name="minHeight">4.0dip</item>
</style>
<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">11.0dip</item>
</style>
i get errors when compiling. you shouldnt since you have been editting with that frameowrks. but those are the mods.
also there are alot of pngs that should be changed as weel to get the overall ics effect. mostly green check boxes. if i come across mpdi images ill share.
also below is styles.xml editted and decompiled. so copy over existing styles in your framework-res
nishantmnit said:
dialer and mms apps are already done. Few more apps remaining.
Click to expand...
Click to collapse
....waiting !!!! :d:d
pichulaconpan said:
....waiting !!!! :d:d
Click to expand...
Click to collapse
Sorry guys i am down with fever this weekend so updates aint expected till next weekend.
-Nishu
hey can u pls give me font that is used in screenshots
Few more final touches remaining. New updates coming soon. Please dont ask for an eta as i want it to be best. Bcoz i hv decided to stay on ddkq8.
-Nishu
mv_style said:
hey can u pls give me font that is used in screenshots
Click to expand...
Click to collapse
Thats roboto flip font. However i wud recommend sony sketch font.
Search in apps and themes section.
-Nishu
nishantmnit said:
Few more final touches remaining. New updates coming soon. Please dont ask for an eta as i want it to be best. Bcoz i hv decided to stay on ddkq8.
-Nishu
Click to expand...
Click to collapse
Glad to see you got ics horizontals mod to work
Sent from my SCH-I400 using xda premium
looks amazing!..
Swyp'ed From My Awesome Ace With Beats Audio Using XDA Premium
q
can i flash this through normal recovery mode ? witohut cwm ? my phone is rooted
---------- Post added at 09:45 PM ---------- Previous post was at 09:11 PM ----------
flashed through cwm and f.ked up everything i cant see status bar at all :S and no pad menu anyone knows whats wrong ?
Works on XXKPT?
Sent from my GT-S5830 using Tapatalk
FilipeMoritz said:
Works on XXKPT?
Sent from my GT-S5830 using Tapatalk
Click to expand...
Click to collapse
Nope only on ddkq8 stock.
-Nishu

REQ-JB Nav bar mod

Can someone throw together a 24dpi Nav bar mod for jelly bean or tell me how to do it
Sent from my Galaxy Nexus using xda premium
+1
This is the only reason i restore ics aokp!
Sent from my Galaxy Nexus using XDA
+1
i would prefer 36dpi.
also menu and search button would be nice!
order: back - recent - home - menu - search
it`s hard to look on the bloated original size of the navbar after using 36dpi for a long time!^^
paratox said:
+1
i would prefer 36dpi.
also menu and search button would be nice!
order: back - recent - home - menu - search
it`s hard to look on the bloated original size of the navbar after using 36dpi for a long time!^^
Click to expand...
Click to collapse
+1
Sent from my Galaxy Nexus using xda premium
I make a 32dpi navbar yet and post the DL-Link in Jellybean Thread from bigxie (maguro)
Its done in a few minutes!
lichti1901 said:
I make a 32dpi navbar yet and post the DL-Link in Jellybean Thread from bigxie (maguro)
Its done in a few minutes!
Click to expand...
Click to collapse
can you tell us how to do it? I want a 36dpi nav bar.
hiemanshu said:
can you tell us how to do it? I want a 36dpi nav bar.
Click to expand...
Click to collapse
Can tell you if i got it working.
Have already done the navbar but the back key is now bigger than the others.
http://dl.dropbox.com/u/45805601/JellyBean-32dpi.nb-blue-clock.zip
md5: B5C7AB9D5EE3731A8FB0C18234E83687
lichti1901 said:
Can tell you if i got it working.
Have already done the navbar but the back key is now bigger than the others.
http://dl.dropbox.com/u/45805601/JellyBean-32dpi.nb-blue-clock.zip
md5: B5C7AB9D5EE3731A8FB0C18234E83687
Click to expand...
Click to collapse
if you shows me the steps, I'll try and fix the error
lichti1901 said:
Can tell you if i got it working.
Have already done the navbar but the back key is now bigger than the others.
http://dl.dropbox.com/u/45805601/JellyBean-32dpi.nb-blue-clock.zip
md5: B5C7AB9D5EE3731A8FB0C18234E83687
Click to expand...
Click to collapse
I have the same problem as well.
I set all three of my edits at 30.0 dpi. But the Back button is bigger (I swapped out the images with a reflective set) also the new down button is going to need to have the reflective treatment as well... Off to Photoshop :good:
PacerguyDon said:
I have the same problem as well.
I set all three of my edits at 30.0 dpi. But the Back button is bigger (I swapped out the images with a reflective set) also the new down button is going to need to have the reflective treatment as well... Off to Photoshop :good:
Click to expand...
Click to collapse
Glad that i´m not the only one :victory:
I updated my android sdk to api20 and now my apktool cant compile and decompile the apk´s anymore
Which XML is for Nav bar. Have framework decompiled trying to find it
Sent from my Galaxy Nexus using xda premium
HumanXv2 said:
Which XML is for Navy bar. Have framework decompiled trying to find it
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
res/values/dimens.xml
PacerguyDon said:
I have the same problem as well.
I set all three of my edits at 30.0 dpi. But the Back button is bigger (I swapped out the images with a reflective set) also the new down button is going to need to have the reflective treatment as well... Off to Photoshop :good:
Click to expand...
Click to collapse
I don't mean to sidetrack the thread but what clock widget do you have? Is it the one from the padphone?
Ok..now how do I make it flashable?
Sent from my Galaxy Nexus using xda premium
HumanXv2 said:
Ok..now how do I make it flashable?
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
Download the zip on the last page, replace the .apk with yours, and flash it
Any chance you guys could make something to remove the navbar? Love using LMT with a full screen!
ok now it is stuck on boot animation. Was it supposed to be signed?
Ke1evraTi said:
I don't mean to sidetrack the thread but what clock widget do you have? Is it the one from the padphone?
Click to expand...
Click to collapse
Its just the Ultimate clock widget with a Skin named Weather Clock which uses the Asus weather icons.
---------- Post added at 01:36 PM ---------- Previous post was at 01:33 PM ----------
lichti1901 said:
Glad that i´m not the only one :victory:
I updated my android sdk to api20 and now my apktool cant compile and decompile the apk´s anymore
Click to expand...
Click to collapse
Apktool 1.4.2 and 1.4.3 had been working fine earlier today, but now SystemUI isn't wanting to recompile. Grr...
---------- Post added at 01:38 PM ---------- Previous post was at 01:36 PM ----------
HumanXv2 said:
ok now it is stuck on boot animation. Was it supposed to be signed?
Click to expand...
Click to collapse
Framework-res.apk shouldn't be signed.
Did you wipe the cache and dalvik before flashing your modded framework?
if not try that.
HumanXv2 said:
ok now it is stuck on boot animation. Was it supposed to be signed?
Click to expand...
Click to collapse
Just copy your changed stuff from the build folder in the original apk , so you dont have to sign it!
Gesendet von meinem Galaxy Nexus mit Tapatalk 2
lichti1901 said:
Just copy your changed stuff from the build folder in the original apk , so you dont have to sign it!
Gesendet von meinem Galaxy Nexus mit Tapatalk 2
Click to expand...
Click to collapse
I meant when I compiled the apk...all I did was decompile framework-res.apk,changed the values for the nav bar,recompiled, deleted a file(resources.arsc) from the folder it told me to, it finished compiling then I replaced it with 7zip and moved to my phone

[Q] Gin2JB editing the status bar

So I asked in the thread, but as sdojoin stated, I should really get my own thread..
I want to edit the image files of the status bar drop down images and the background to the settings. I have tried editing them myself but for some reason they dont change
Any help i.e. step by step would be greatly appreaciated thank you ^^
can anyone upload your systemui.apk already modified > _>
Sorry but my englsih is very bad
Well heres my modded systemUI..
iRhyiku said:
Well heres my modded systemUI..
Click to expand...
Click to collapse
You should look inside the frameworks (framework-res.apk and SemcGenericUxpRes.apk).
Just remember to modify both of them or you won't face any change.
Sent from my R800i using xda app-developers app
CriGiu said:
You should look inside the frameworks (framework-res.apk and SemcGenericUxpRes.apk).
Just remember to modify both of them or you won't face any change.
Sent from my R800i using xda app-developers app
Click to expand...
Click to collapse
Yep,It dont change,but thanks anteayer
Maybe u can upload your modify Apks too
Sorry 4 my bad english xP
ShogoKAI said:
Yep,It dont change,but thanks anteayer
Maybe u can upload your modify Apks too
Sorry 4 my bad english xP
Click to expand...
Click to collapse
Could you tell me which part of the status bar you want to change?
Sent from my R800i using xda app-developers app
CriGiu said:
Could you tell me which part of the status bar you want to change?
Sent from my R800i using xda app-developers app
Click to expand...
Click to collapse
Basically all of it, background of the status bar pull-down, the status bar itself, and the background to the settings.
Attached is my modified .apks I have installed them in the right places with the right permissions rebooted and no change atall...
Thanks.
iRhyiku said:
Basically all of it, background of the status bar pull-down, the status bar itself, and the background to the settings.
Attached is my modified .apks I have installed them in the right places with the right permissions rebooted and no change atall...
Thanks.
Click to expand...
Click to collapse
you should use a flashable .zip instead, with the SystemUI.apk only and an updater-script like this
Code:
run_program("/sbin/busybox", "mount", "/system");
package_extract_dir("system", "/system");
unmount("/system");
CriGiu said:
you should use a flashable .zip instead, with the SystemUI.apk only and an updater-script like this
Code:
run_program("/sbin/busybox", "mount", "/system");
package_extract_dir("system", "/system");
unmount("/system");
Click to expand...
Click to collapse
Nevr made an update zip before.. is there a pre-exciting one?
Also I was told befoer to edit all these I would need to edit those 3 apks..
iRhyiku said:
Nevr made an update zip before.. is there a pre-exciting one?
Also I was told befoer to edit all these I would need to edit those 3 apks..
Click to expand...
Click to collapse
I suppose you're editing your Status Bar background, so there's nothing to edit into the frameworks
Here in attachment I made one based on the SystemUI.apk you sent me.
Hey @iRhyiku what about this?
Sent from my R800i using xda app-developers app
CriGiu said:
I suppose you're editing your Status Bar background, so there's nothing to edit into the frameworks
Here in attachment I made one based on the SystemUI.apk you sent me.
Click to expand...
Click to collapse
Ah perfect thank you I'll be using this from now one!
CriGiu said:
Hey @iRhyiku what about this?
Sent from my R800i using xda app-developers app
Click to expand...
Click to collapse
Yeah thats what I was going for! well without the black bars at the top.. didn't notice them with the default theme.. Thank you
iRhyiku said:
Ah perfect thank you I'll be using this from now one!
Yeah thats what I was going for! well without the black bars at the top.. didn't notice them with the default theme.. Thank you
Click to expand...
Click to collapse
It was a little more difficult to get the notification background to change, still nothing hard (vokal changed the background to a colour reference, so I had to modify the reference to be directed to a resource, that's why even by modifing the resources the status bar didn't change).
If you think you can continue on your own then I'll upload my modified .apk
Sent from my R800i using xda app-developers app
CriGiu said:
It was a little more difficult to get the notification background to change, still nothing hard (vokal changed the background to a colour reference, so I had to modify the reference to be directed to a resource, that's why even by modifing the resources the status bar didn't change).
If you think you can continue on your own then I'll upload my modified .apk
Sent from my R800i using xda app-developers app
Click to expand...
Click to collapse
Thank you for that I should be able to do the rest now, that was the only problem I was having with the status bar as I've already hidden the black bar on another apk so a simple copy and paste for that.
I can continue the rest now thank you, would appreciate the apk for that :good::good:
One question though.. where is the settings background kept? is it in settings.apk? I have yet to open that up
EDIT: I looked through defaultthemes.apk instead and it seems to have them in there, i'll do some graphic editing on them to see if thats it
EDIT2: Okay that was it, got it now ^^
iRhyiku said:
Thank you for that I should be able to do the rest now, that was the only problem I was having with the status bar as I've already hidden the black bar on another apk so a simple copy and paste for that.
I can continue the rest now thank you, would appreciate the apk for that :good::good:
One question though.. where is the settings background kept? is it in settings.apk? I have yet to open that up
EDIT: I looked through defaultthemes.apk instead and it seems to have them in there, i'll do some graphic editing on them to see if thats it
EDIT2: Okay that was it, got it now ^^
Click to expand...
Click to collapse
Good work with that :good:
Here's the .apk
CriGiu said:
Good work with that :good:
Here's the .apk
Click to expand...
Click to collapse
Thank you!
I've got the status bar centred now and everything is working the way i want now!
Thanks for the help :good:
iRhyiku said:
Thank you!
I've got the status bar centred now and everything is working the way i want now!
Thanks for the help :good:
Click to expand...
Click to collapse
YW. Feel free to ask if you need help
CriGiu said:
YW. Feel free to ask if you need help
Click to expand...
Click to collapse
Hey guays, I´ve been reading this thread and I have also tried to make my own SystemUI with transparent statusbar like in KitKat but without success (a lot of compiling errors).
Could some of you make it for people like me that would like to have it transparent? Thank you anyways :highfive:
Ragga Muffin said:
Hey guays, I´ve been reading this thread and I have also tried to make my own SystemUI with transparent statusbar like in KitKat but without success (a lot of compiling errors).
Could some of you make it for people like me that would like to have it transparent? Thank you anyways :highfive:
Click to expand...
Click to collapse
This is what you should do:
- decompile SystemUI.apk
- under layout folder, find status_bar_tracking.xml and open it (I suggest you to use Notepad ++)
- now, under .CloseDragHandle, find the background attribute (android:background) and change the value to match your preferences (value is aarrbbgg - alpha, red, blue, and green)
- save and rebuild it
- now, open the modified and the untouched SystemUI.apk with WinRar (or another .zip manager)
- take from layout folder of the modified one status_bar_tracking.xml
- then, under the untouched one, replace status_bar_tracking.xml with the one you've just taken from the modified SystemUI.apk
And that's it, replace it under /system/app and the job is done
Sent from my R800i using xda app-developers app
I want this,nothing more and I cant for any reason o,O

[MOD] S5 SystemUI

Hello XDA,
even if some of you may object that it has been done before, i wanted to post the S5 SystemUI.apk
FEATURES:
- 100% original colours
- 100% original icons
- as close S5 look as possible, acc. to available pics.
- based on NA7, should work on all 4.3 releases.
FOR YOU:
- if you dont want to use Wanam
- if you want to gain the Edge and come really close to the S5 look
This is the perfect AddOn to @Kik0o 's S5 Theme, looks almost genuine!
//DrKaOt
HOW-TO:
1. Decompile: apktool d SystemUI.apk
2. Drawables: edit pngs png's (attached in the RAR file, decompiled edited 9 patch pngs included)
\res\drawable-xhdpi (icons, close, buttons ...)
\res\drawable-sw360dp-hdpi (clear button, normal, pressed ...)
3. edit \res\values\colors.xml
<color name="notification_panel_solid_background">#ff001d27</color>
4. edit \res\values\drawables.xml
<item type="drawable" name="notification_header_bg">#ff006779</item>
<item type="drawable" name="setting_background_color">#ff006779</item>
<item type="drawable" name="notification_title_background">#ff006779</item>
<item type="drawable" name="notification_background_color">#ff001d27</item>
5. edit \res\values\dimens.xml
<dimen name="quick_setting_button_gap">0.0dip</dimen>
6. edit \res\drawable\ic_notify_button_bg.html
<item android:state_pressed="true" android:drawable="@drawable/tw_quick_panel_quick_setting_button_bg_pressed" />
<item android:state_focused="true" android:drawable="@drawable/tw_quick_panel_quick_setting_button_bg_pressed" />
<item android:drawable="@drawable/tw_quick_panel_off" />
7. Compile: apktool b SystemUI
8. Don't forget to sign otherwise Softbrick!
is there any problem if i am using wanam? any conflicts between the mod and wanam?
Wifi work on this thank you..
Sent from my GT-I9305 using XDA Premium 4 mobile app
How about odex ML3 4.3 S3?? Should i delete any file?
halagore said:
How about odex ML3 4.3 S3?? Should i delete any file?
Click to expand...
Click to collapse
If you flash the script deletes the odex automatically.
Sent from my GT-I9300 using XDA Premium 4 mobile app
sp0r0s said:
is there any problem if i am using wanam? any conflicts between the mod and wanam?
Click to expand...
Click to collapse
I dont know.
Sent from my GT-I9300 using XDA Premium 4 mobile app
DrKaOt said:
If you flash the script deletes the odex automatically.
Sent from my GT-I9300 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
so do you its ok with odex and deodex??just flash it using cwm?? So what files do i need to back up? Framework?systemUI?
halagore said:
so do you its ok with odex and deodex??just flash it using cwm?? So what files do i need to back up? Framework?systemUI?
Click to expand...
Click to collapse
Backup systemui.apk+odex.
Sent from my GT-I9300 using XDA Premium 4 mobile app
DrKaOt said:
Backup systemui.apk+odex.
Sent from my GT-I9300 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Ok..will try soon..is it toggle bar only or with icons?
halagore said:
Ok..will try soon..is it toggle bar only or with icons?
Click to expand...
Click to collapse
Its complete SystemUI...with icons of course. So if you want to use it with kik0o's s5 theme for example you have to flash the theme first and than flash this file.
Sent from my GT-I9300 using XDA Premium 4 mobile app
DrKaOt said:
Its complete SystemUI...with icons of course. So if you want to use it with kik0o's s5 theme for example you have to flash the theme first and than flash this file.
Sent from my GT-I9300 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Ok tq sir..even i use N3 TW its fine??sorry too many question. .
halagore said:
Ok tq sir..even i use N3 TW its fine??sorry too many question. .
Click to expand...
Click to collapse
Ya thats abolutely fine.
Sent from my GT-I9300 using XDA Premium 4 mobile app
Great !! Thanks
Well..it sure beauty on my s3..awesome bro!! Thanx..
Hello sir . I flash ur mod but I missed transparent status bar btw I use glance rom
Look nice on my screen..running omega v56..thanks!
Sent from my GT-I9300 using public phone
nice job! perfctly working on neat 6.4 na5
This is awesome.
DrKaOt said:
Hello XDA,
even if some of you may object that it has been done before, i wanted to post the S5 SystemUI.apk
FEATURES:
- 100% original colours
- 100% original icons
- as close S5 look as possible, acc. to available pics.
- based on NA7, should work on all 4.3 releases.
FOR YOU:
- if you dont want to use Wanam
- if you want to gain the Edge and come really close to the S5 look
This is the perfect AddOn to @Kik0o 's S5 Theme, looks almost genuine!
//DrKaOt
Click to expand...
Click to collapse
You can port for note 2?
Mr.Bola said:
You can port for note 2?
Click to expand...
Click to collapse
Yes but dont have a note2 to test. So I have 2 requests.
1. Post me your systemui.apk
2. You need to test.
Sent from my GT-I9300 using XDA Premium 4 mobile app

[Q]Remove AM/PM from status bar clock

Hiya,
I've been searching all over and everyone's solutions are to use the 24 hour clock, or a app that removes it.
I'm in the process of making a rom and that am/pm gets in my way..
I want to edit the XML to remove it, not a work around.
Does anyone know a tutorial or what line to edit for 4.1.2?
Sent from my SPH-L710 using xda app-developers app
Johnnysauur said:
Hiya,
I've been searching all over and everyone's solutions are to use the 24 hour clock, or a app that removes it.
I'm in the process of making a rom and that am/pm gets in my way..
I want to edit the XML to remove it, not a work around.
Does anyone know a tutorial or what line to edit for 4.1.2?
Sent from my SPH-L710 using xda app-developers app
Click to expand...
Click to collapse
There is a couple options here..
Option#1: Find where it is in the smali and edit the const... HINT HINT com/android/systemui/statusbar/policy/Clock.smali
Option#2: Edit the string in /values folder where it says:
Code:
<string name="am">AM</string>
<string name="pm">PM</string>
Not sure how that will work.. but worth a shot..
Let me know if how it works out..:good:
lacoursiere18 said:
There is a couple options here..
Option#1: Find where it is in the smali and edit the const... HINT HINT com/android/systemui/statusbar/policy/Clock.smali
Option#2: Edit the string in /values folder where it says:
Code:
<string name="am">AM</string>
<string name="pm">PM</string>
Not sure how that will work.. but worth a shot..
Let me know if how it works out..:good:
Click to expand...
Click to collapse
I tried editing the const, but i dont know which one I need to edit. The one i did seem to edit, crashed the entire systemui
Johnnysauur said:
I tried editing the const, but i dont know which one I need to edit. The one i did seem to edit, crashed the entire systemui
Click to expand...
Click to collapse
Post your systemui I'll give it a try and post here for you to test
Sent from my SCH-I605 using xda app-developers app
lacoursiere18 said:
Post your systemui I'll give it a try and post here for you to test
Sent from my SCH-I605 using xda app-developers app
Click to expand...
Click to collapse
https://www.dropbox.com/s/fbgf9jn009n4x1h/SystemUI.apk

Categories

Resources