[GUIDE][GB]Gradient_Statusbar[EXCLUSIVE] - Android Themes

Gradient Status Bar
For Gingerbread Roms​
Hello everyone, today I will show you how to get Kit Kat Gradient Status Bar on Gingerbread Roms. So, lets begin.
Requirements:
Windows/Linux
Apktool
7-zip.
Notepad++ for Editing xml in Windows
Gingerbread Rom (De-odexed) for SystemUI.apk
Resources (See Attachment)
Basic Compiling and Decompiling Knowledge.
Modding SystemUI.apk
Decompile your SystemUI.apk
Navigate to /SystemUI/res/layout/status_bar.xml
Now find this line
Code:
<com.android.systemui.statusbar.StatusBarView android:orientation="vertical" android:background="#ff000000" android:focusable="true" android:descendantFocusability="afterDescendants"
xmlns:android="http://schemas.android.com/apk/res/android">
Now Change the Red marked line with this
Code:
android:background="@drawable/gradient"
Now copy the attached gradient.png to /SystemUI/res/drawable-mdpi
Recompile SystemUI.apk
Now open the Original SystemUI.apk using 7-zip
Now navigate to /SystemUI/build/apk and Drag the classes.dex to Original SystemUI.apk
Now navigate to /SystemUI/build/apk/res/drawable-mdpi and Drag gradient.png to Original SystemUI.apk
Push the Modded SystemUI.apk to /system/app
Thats it. Enjoy Gradient Status Bar on your Gingerbread.
XDA PORTAL
Don't forget to Hit Thanks

:good:good work

Great :laugh:

thank you.. gonna add gradients to my. next gb rom.. I've more white if you want I can share

Nice guide. :good:
Btw You can use xml method for the gradient statusbar, So that the users can change the opacity and color of their choice without any image editor. If you didn't understand you can take a look at gradient_bg.xml in SystemUI.zip from my guide.

i will definitely gonna try it on my ace with gb
happy new year in advance :laugh::good:

MuSaddiq said:
Nice guide. :good:
Btw You can use xml method for the gradient statusbar, So that the users can change the opacity and color of their choice without any image editor. If you didn't understand you can take a look at gradient_bg.xml in SystemUI.zip from my guide.
Click to expand...
Click to collapse
Yes, we can do that. But this one is much simple and the output will be same.
aditya rathee said:
i will definitely gonna try it on my ace with gb
happy new year in advance :laugh::good:
Click to expand...
Click to collapse
Happy new year to you also.
enricocid said:
thank you.. gonna add gradients to my. next gb rom.. I've more white if you want I can share
Click to expand...
Click to collapse
Yes you can share after all XDA is a place for sharing.

can it be used on ICS ROM

pravin.narote said:
can it be used on ICS ROM
Click to expand...
Click to collapse
It should work give a try.

kk9999gada said:
Yes, we can do that. But this one is much simple and the output will be the same.
Click to expand...
Click to collapse
Ya, the output will be same and this method is simple also but if the user wants to change the color of the gradient
In image method: He should use any photo editor.
In xml method: He should just change the hex color code.
Just a suggestion that you can edit the op and create 2 methods for this, Method 1 is image method and Method 2 is xml method.
Sent from my GT-S5360

MuSaddiq said:
Ya, the output will be same and this method is simple also but if the user wants to change the color of the gradient
In image method: He should use any photo editor.
In xml method: He should just change the hex color code.
Just a suggestion that you can edit the op and create 2 methods for this, Method 1 is image method and Method 2 is xml method.
Sent from my GT-S5360
Click to expand...
Click to collapse
Ok. Thanks I will add second method also.

@kk9999gada thanks buddy need more tweaks for ginger bread .... KEEP UP THE LEGACY

kk9999gada said:
Gradient Status Bar
For Gingerbread Roms​
Hello everyone, today I will show you how to get Kit Kat Gradient Status Bar on Gingerbread Roms. So, lets begin.
Requirements:
Windows/Linux
Apktool
7-zip.
Notepad++ for Editing xml in Windows
Gingerbread Rom for SystemUI.apk
Resources (See Attachment)
Basic Compiling and Decompiling Knowledge.
Modding SystemUI.apk
Decompile your SystemUI.apk
Navigate to /SystemUI/res/layout/status_bar.xml
Now find this line
Code:
<com.android.systemui.statusbar.StatusBarView android:orientation="vertical" [COLOR="Red"]android:background="#ff000000" [/COLOR]android:focusable="true" android:descendantFocusability="afterDescendants"
xmlns:android="http://schemas.android.com/apk/res/android">
Now Change the Red marked line with this
Code:
[COLOR="RoyalBlue"]android:background="@drawable/gradient"[/COLOR]
Now copy the attached gradient.png to /SystemUI/res/drawable-mdpi
Recompile SystemUI.apk
Now open the Original SystemUI.apk using 7-zip
Now navigate to /SystemUI/build/apk and Drag the classes.dex to Original SystemUI.apk
Now navigate to /SystemUI/build/apk/res/drawable-mdpi and Drag gradient.png to Original SystemUI.apk
Push the Modded SystemUI.apk to /system/app
Thats it. Enjoy Gradient Status Bar on your Gingerbread.
XDA PORTAL
Don't forget to Hit Thanks:good:
Click to expand...
Click to collapse
Hello, first thank you for this but I think this is not a full guide. I tried that but icons & words got blurred.. First do we need a transparency mod inside systemui smali files?

Erhany said:
Hello, first thank you for this but I think this is not a full guide. I tried that but icons & words got blurred.. First do we need a transparency mod inside systemui smali files?
Click to expand...
Click to collapse
There is no need to do modding with smali files for getting transparency. The icons are only for MDPI devices. I have resized the icons according to my device.
And please don't quote whole OP.

Helpp!!
Hey replaced my status bar background by ur png but i am not getting that kitkat look...
any idea to solve this??
I am on CM7 based rom on galaxy y...

TheStrix said:
Hey replaced my status bar background by ur png but i am not getting that kitkat look...
any idea to solve this??
I am on CM7 based rom on galaxy y...
Click to expand...
Click to collapse
Try these steps:
Decompile your launcher
open res/values/styles.xml
add this style
Code:
<style name="My.Theme" parent="@*android:style/Theme.Wallpaper.NoTitleBar">
<item name="android:windowContentOverlay">@null</item>
</style>
now open AndroidManifest.xml
find this line (this line may be different in your rom)
Code:
<application android:label="@string/application_name" android:icon="@drawable/ic_launcher_home" android:name="LauncherApplication">
add this code in that line
Code:
android:theme="@style/My.Theme"
Now that line will look like this
Code:
<application [COLOR="Red"]android:theme="@style/My.Theme"[/COLOR] android:label="@string/application_name" android:icon="@drawable/ic_launcher_home" android:name="LauncherApplication">
Recompile
Push it in to system/app
Set proper permissions(rw-r--r--)

TheStrix said:
Hey replaced my status bar background by ur png but i am not getting that kitkat look...
any idea to solve this??
I am on CM7 based rom on galaxy y...
Click to expand...
Click to collapse
I guess you are using Holo Launcher.
If yes then go to Launcher Settings > Desktop Settings > Scroll to Bottom > Check Hide Shadows at top and bottom.
Now enjoy gradient status bar.

kk9999gada said:
I guess you are using Holo Launcher.
If yes then go to Launcher Settings > Desktop Settings > Scroll to Bottom > Uncheck Hide Shadows at top and bottom.
Now enjoy gradient status bar.
Click to expand...
Click to collapse
Thanks mate, done it successfully!!
But minor correction in ur step is tht we hav to 'check ' hide shadow option and not 'uncheck'

TheStrix said:
Thanks mate, done it successfully!!
But minor correction in ur step is tht we hav to 'check ' hide shadow option and not 'uncheck'
Click to expand...
Click to collapse
I am facing same problem in lockscreen too...
Can you tell me wat xml is of locksreen!??

TheStrix said:
I am facing same problem in lockscreen too...
Can you tell me wat xml is of locksreen!??
Click to expand...
Click to collapse
In Holo Locker > Change lockscreen tint to 0%.
Plus version of holo locker is required for this.

Related

[MIUI][MOD][GUIDE] statusbar carrier logo & pattern lock dots

I AM NOT RESPONSIBLE FOR ANY DAMAGE DONE TO YOUR DEVICE BY FLASHING THIS MOD. !THIS MOD IS ONLY FOR MIUI GB ROM!
FOR ALL OF YOU WHO WANT ONLY PATTERN DOTS, HERE IS FLASHABLE ZIP FOR CM7.2, NO NEED TO MOUNT SYSTEM
AS SOON AS CM9 GET STABLE ENOUGH FOR DAILY USE, I'LL TRY TO MAKE IT WORK ON IT
Hi, I made something for You! Now You can have anything in place of Your mobile carrier name on status bar! happy? ;d And also, now You can use pattern lockscreen, because I replaced those big black ugly circles with something much more subtle ;p screenshot's and flashable zip in attachments.
TODO:
I will make this tutorial n00b friendly as soon as possible, so no one will get confused I'm also planning to expand this thread with other modifications like center clock, carrier logo for cm7, and others...
MIUI & CM7 STATUSBAR CARRIER LOGO GUIDE
I assume that You are familiar with ADB and ApkTool
1. pull and decompile SystemUI.apk
2. go to .../res/layout and open status_bar.xml
3. remove this line:
Code:
<com.android.systemui.statusbar.CarrierLabel
4. find start of this line:
Code:
<com.android.systemui.statusbar.IconMerger
5. now You have to put this right above the line mentioned above:
Code:
<com.android.systemui.statusbar.CarrierLabel android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:textColor="@android:color/transparent" android:gravity="left|center" android:id="@id/carrier" android:background="@drawable/carrier_logo" android:paddingLeft="6.0px" android:paddingRight="6.0px" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
6. You can save and exit now
7. now open .../res/values/ids.xml
8. check if this line is present:
Code:
<item type="id" name="carrier">false</item>
if yes, move it to bottom, right before closing tag. if no, paste it there
9. save and compile SystemUI
10. go to .../build/apk/res/layout and drag status_bar.xml to SystemUI.apk (opened in other window)
11. do the same with ids.xml (that way You won't have to sign apk)
12. put image of Your choice in res/drawable_xdpi (it must be named "carrier_logo.png", put any letter corresponding to Your resolution instead of x, for example ldpi)
13. push SystemUI.apk and reboot, and You've almost done!
14. now You just install Carrier_Name_1.2.apk from here, open it, put space in textfield and press ok, then reboot and that's it!
for CM7 skip step 3, and edit line in point 5 to Your needs (android:layout_width="wrap_content")
*edit* best way to add carrier logo to cm7, is to resize your logo to 20px in height, and put proper number in "layout_width" and "layout_heigth" eg. if your logo is 20px in height and let's say 34px in width, it will be layout_width="34pix" and layout_height="20pix" (depends on your phones resolution, this one is for ldpi)
!note - if You can't compile it back, make sure that all files referred to in xml are present in folders (eg. carrier_logo.png)
to use Your own image as carrier logo:
-open SystemUI.apk from my flash with winzip, or any other similar program of Your choice
-go to /res/drawable-hdpi and replace carrier_logo.png with any image of Your choice ;p
Bugs: image stretches when signal is null (emergency calls only)
*reserved*
For future use
Can you make it for CM7? Between NAIZ!!!
Sent from my GT-S5570 using xda premium
bookmarking....
ensoy said:
Can you make it for CM7? Between NAIZ!!!
Sent from my GT-S5570 using xda premium
Click to expand...
Click to collapse
Yeah, I will try to make it for cm7
Where to find pattern unlock files?
Sent from my GT-S5570 using xda premium
ensoy said:
Where to find pattern unlock files?
Sent from my GT-S5570 using xda premium
Click to expand...
Click to collapse
framework-res.apk/res/drawable-xdpi but I don't remember file names
Hi..
Can you make an ICS Style/MIUI 4 style settings? that would be great if you can Thanks in advance
Hmm, why there is still operator text on my status bar ? I just want carrier logo without carrier label text
Sorry for my bad English
ichambi said:
Hi..
Can you make an ICS Style/MIUI 4 style settings? that would be great if you can Thanks in advance
Hmm, why there is still operator text on my status bar ? I just want carrier logo without carrier label text
Sorry for my bad English
Click to expand...
Click to collapse
Use this app to remove your carrier name.
www.mediafire.com/download.php?0zg8wuc24xu7e3h
nishanty13 said:
Use this app to remove your carrier name.
www.mediafire.com/download.php?0zg8wuc24xu7e3h
Click to expand...
Click to collapse
Don't know why but my carrier label name still on my status bar.. I've changed it to blank ..
ooh it just happen when i scroll down status bar.. Anyone can help me?
ill be monitoring this thread
also OP it would be nice if you could write what files should be edited to make this, i know most people would appreciate it because of different miui patchroms and devices because it doesnt work properly on all devices i guess, i know mine got a bit messed up with both carrier logo and stretched picture under it
good work tho, thumbs up
edit: nvm OP, i decompiled your SystemUI and fixed it for my rom, looks nice now, thanks
Give Up .......
I give up. Been trying since morning to get carrier logo but in the end I got this.
No matter what logo I use I get this logo. I even tried editing my systemUI.apk manually and replacing it. Used the zip the OP attached but still get this logo. I wonder why.:banghead::banghead::banghead:
nishanty13 said:
I give up. Been trying since morning to get carrier logo but in the end I got this.
View attachment 1025490
No matter what logo I use I get this logo. I even tried editing my systemUI.apk manually and replacing it. Used the zip the OP attached but still get this logo. I wonder why.:banghead::banghead::banghead:
Click to expand...
Click to collapse
If its miui change theme to default, some themes have built-in logo. To edit theme, open mtz with winzip, and find systemui, then open it and change it there
I will post full step by step guide today evening
On mine, I can't delete/or change the default Carrier label name.. No matter how I tried to change it with Carriername.apk..
kitrax59 said:
On mine, I can't delete/or change the default Carrier label name.. No matter how I tried to change it with Carriername.apk..
Click to expand...
Click to collapse
Try changing it with eri.xml in /system/data I hope it helps
i had to edit xml to make it work and look good, the measures were a little off but managed to fix them for my phone
attaching image with default theme
yackovsky said:
Try changing it with eri.xml in /system/data I hope it helps
Click to expand...
Click to collapse
Can't find that xml buddy..
yackovsky said:
If its miui change theme to default, some themes have built-in logo. To edit theme, open mtz with winzip, and find systemui, then open it and change it there
Click to expand...
Click to collapse
Lol, I forgot.

Transparent Status Bar? RazoDroid 2.5

Title says it all
Reply
Hello. If you want your statusbar transparent you have to edit the file SystemUI and edit the background of the statusbar.
Speedyspro said:
Hello. If you want your statusbar transparent you have to edit the file SystemUI and edit the background of the statusbar.
Click to expand...
Click to collapse
It doesnt work bro
I have tried all
I have edited pngs, xmls, smalis
It doesnt work
I dedicated my 2 months on it
Still dont work
We need someone who knows a lotttttt
M8, it is easy like the quantum theory
1. Decompile systemUI.apk
2. go to its /layout folder
3. edit status_bar.xml file:
- find line : <com.android.systemui.statusbar.StatusBarView ...... containing android:background="#FF000000"
- change value of background to "#00000000" and now you have got full transparency of statusbar ( just like mine )
easy, isn't it ?
Father Pio said:
M8, it is easy like the quantum theory
1. Decompile systemUI.apk
2. go to its /layout folder
3. edit status_bar.xml file:
- find line : <com.android.systemui.statusbar.StatusBarView ...... containing android:background="#FF000000"
- change value of background to "#00000000" and now you have got full transparency of statusbar ( just like mine )
easy, isn't it ?
Click to expand...
Click to collapse
Is this a pic of your Ace I
Because when I tried it months ago
I lost my status bar
Which decompiling tool you use
Can you give the link
iamareebjamal said:
Is this a pic of your Ace I
Because when I tried it months ago
I lost my status bar
Which decompiling tool you use
Can you give the link
Click to expand...
Click to collapse
Yes, it is. I did this screen shot especially for you to show you result of changes.
To tell the truth I don't remember from which place I downloaded my apktool, but use google and I'm sure that you will find what you looking for
Father Pio said:
Yes, it is. I did this screen shot especially for you to show you result of changes.
To tell the truth I don't remember from which place I downloaded my apktool, but use google and I'm sure that you will find what you looking for
Click to expand...
Click to collapse
The apktool I used first could not compile SystemUI.apk
Then I changed it
Then I changed the hex code to semi transparent
And when I replaced the SystemUI.apk
My status bar was gone
I think transparent might work
Can you please upload your apktool
I would be really grateful
As U wish, here U are. Hope will be helpful
Okay?
Father Pio said:
M8, it is easy like the quantum theory
1. Decompile systemUI.apk
2. go to its /layout folder
3. edit status_bar.xml file:
- find line : <com.android.systemui.statusbar.StatusBarView ...... containing android:background="#FF000000"
- change value of background to "#00000000" and now you have got full transparency of statusbar ( just like mine )
easy, isn't it ?
Click to expand...
Click to collapse
I want 35% transperacy
For 35% transparency
use this: #59000000
I've done as you said and but my status bar gone
I think it is not that easy but I don't know I'm just a noob
Father Pio said:
As U wish, here U are. Hope will be helpful
Click to expand...
Click to collapse
Your tool wont allow to open the file :/

[GUIDE]How to make status bar transparent

You need to have these things first :
1- Root
2- Deodexed ROM
3- PC (with JAVA installed)
4- Any apk decompiler (apktool, apk-multitool, etc..)
How to :-
1- Copy SystemUI.apk from /system/app/ to your sd card via any root browser.
2- transfer SystemUI.apk to your computer.
3- Decompile SystemUI.apk.
4- Open res\layout\status_bar.xml
5- There you will see a value like android:background=FF000000
6- To make it translucent type 5F000000 instead of FF000000 or to make it full transparent type 000000
Enjoy and if any questions plz ask here.. .
Credits :
Google (for searching)
XDA (for some knowledge about status_bar.xml)
Ok, this guide needs to be elaborated... :angel:
I did the same, and following was output:
1. Even while changing background to 5f000000, background became full transparent.
2. Whenever i open an app, status bar becomes black again(opaque)
3. During media scanning also status bar looses transparency!
This means status bar is only transparent when on homescreen!
I'm attaching images which i tried on jelly blast rom and also the modded systemui.apk (of Jelly Blast rom) if anyone wants to try. Just rename the file to systemui.apk and put in system/app, change permissions and reboot. you will face lots of force close messages but don't worry after reboot it'll be fine!:good:
js2892 said:
Ok, this guide needs to be elaborated... :angel:
I did the same, and following was output:
1. Even while changing background to 5f000000, background became full transparent.
2. Whenever i open an app, status bar becomes black again(opaque)
3. During media scanning also status bar looses transparency!
This means status bar is only transparent when on homescreen!
I'm attaching images which i tried on jelly blast rom and also the modded systemui.apk (of Jelly Blast rom) if anyone wants to try. Just rename the file to systemui.apk and put in system/app, change permissions and reboot. you will face lots of force close messages but don't worry after reboot it'll be fine!:good:
Click to expand...
Click to collapse
lol,that's normal.
HolyTyphlosion said:
lol,that's normal.
Click to expand...
Click to collapse
I think editing framework-res.apk will solve this!
Sent from my GT-S5830i using xda app-developers app
js2892 said:
Ok, this guide needs to be elaborated... :angel:
I did the same, and following was output:
1. Even while changing background to 5f000000, background became full transparent.
2. Whenever i open an app, status bar becomes black again(opaque)
3. During media scanning also status bar looses transparency!
This means status bar is only transparent when on homescreen!
I'm attaching images which i tried on jelly blast rom and also the modded systemui.apk (of Jelly Blast rom) if anyone wants to try. Just rename the file to systemui.apk and put in system/app, change permissions and reboot. you will face lots of force close messages but don't worry after reboot it'll be fine!:good:
Click to expand...
Click to collapse
Now, everything is not perfect
Atleast it gives SOME satisfaction...
tried editing the drawer.xml from framework-res.apk but still gives me blackstatusbar.. I only get transparent upon pulling the notification down..
iMaker said:
tried editing the drawer.xml from framework-res.apk but still gives me blackstatusbar.. I only get transparent upon pulling the notification down..
Click to expand...
Click to collapse
So why don't you try what is written in this guide?
i just did
Sent from my GT-S5360 using Tapatalk 2
iMaker said:
i just did
Sent from my GT-S5360 using Tapatalk 2
Click to expand...
Click to collapse
bro you don't have to edit drawer.xml but statusbar.xml -.-
And this guide is small and easy one for those who don't want to all the long fuss!
so you will get transparent status bar only when on homescreen or pulling the notification panel down
And I you want permanent transparency then you must search other guides or if they are not there then I will try to make it when I would get time
i think that I should mod the launcher so that it will have permanent trans. but I don't know how, if its ok with to make a tut it will be a big help for me
Sent from my GT-S5360 using Tapatalk 2
iMaker said:
i think that I should mod the launcher so that it will have permanent trans. but I don't know how, if its ok with to make a tut it will be a big help for me
Sent from my GT-S5360 using Tapatalk 2
Click to expand...
Click to collapse
here is an guide, though it is Galaxy Y's but it might work
http://forum.xda-developers.com/showthread.php?t=2204389
Nabs Zains said:
You need to have these things first :
1- Root
2- Deodexed ROM
3- PC (with JAVA installed)
4- Any apk decompiler (apktool, apk-multitool, etc..)
How to :-
1- Copy SystemUI.apk from /system/app/ to your sd card via any root browser.
2- transfer SystemUI.apk to your computer.
3- Decompile SystemUI.apk.
4- Open res\layout\status_bar.xml
5- There you will see a value like android:background=FF000000
6- To make it translucent type 5F000000 instead of FF000000 or to make it full transparent type 000000
Enjoy and if any questions plz ask here.. .
Credits :
Google (for searching)
XDA (for some knowledge about status_bar.xml)
Click to expand...
Click to collapse
This guide is correct. Just make it sure that you paste this value "#00000000" or "#ff000000"
android:background="#00000000" or android:background="#ff000000"
Thanks!
i cannot find RES/layout in my system UI apk...
anmol7ify said:
i cannot find RES/layout in my system UI apk...
Click to expand...
Click to collapse
decompile it correcctly
iamareebjamal said:
decompile it correcctly
Click to expand...
Click to collapse
ok after i decompiled it correctly...i was able to mod it...but the status bar dont become transparent...it remains black..i even replaced the status_bar_bg tiles to transparent PNG no luck...then i tried to induce a colour and magically the status bar was coloured..but whenever i try to make it transparent it remain black..it seems like the status bar is transparent but some thing black is behind the status bar which is making it appear black..
p.s i even tried modding drawables.xml
iam on a aosp non tw rom.
anmol7ify said:
ok after i decompiled it correctly...i was able to mod it...but the status bar dont become transparent...it remains black..i even replaced the status_bar_bg tiles to transparent PNG no luck...then i tried to induce a colour and magically the status bar was coloured..but whenever i try to make it transparent it remain black..it seems like the status bar is transparent but some thing black is behind the status bar which is making it appear black..
p.s i even tried modding drawables.xml
iam on a aosp non tw rom.
Click to expand...
Click to collapse
Aw man...
I think it only works on samsung ROM
Nabs Zains said:
Aw man...
I think it only works on samsung ROM
Click to expand...
Click to collapse
Is their any way to make the status bar transparent of stock aosp Rom..?? I am trying very hard..but no luck
anmol7ify said:
Bro is thr any way to make the status bar transparent of stock aosp Rom..?? I am trying very hard..but no luck.
Click to expand...
Click to collapse
She's a girl bro.
Sent from my GT-S5830i using Tapatalk 2
anmol7ify said:
Is their any way to make the status bar transparent of stock aosp Rom..?? I am trying very hard..but no luck
Click to expand...
Click to collapse
Which phone u using dude?
CanvasHD aosp

[LINKS][TIPS] Edit system files, ROM, Kernel

I'm gonna give links for various guides to edit these files
Remember, these files are most useful for theming or making ROMs so read on if you want to develop your own ROMs...:good:
A noobs guide for uot kitchen
http://forum.xda-developers.com/showthread.php?t=1676817
Full guide for editing systemui.apk and framework-res.apk and also making a custom rom
http://forum.xda-developers.com/showthread.php?t=2086771
Editing classes.dex inside services.jar
http://forum.xda-developers.com/showthread.php?t=2160478
Change status bar clock color
http://forum.xda-developers.com/showthread.php?t=549309
Make status bar transparent
http://forum.xda-developers.com/showthread.php?t=1891702
Battery Bar Mod
http://forum.xda-developers.com/showthread.php?t=1371330
Decompiling/Recompiling and Advance Theming of 9 PNG
http://forum.xda-developers.com/showthread.php?t=2254824
Android Theming(Big guide with lots of links)
http://forum.xda-developers.com/showthread.php?t=2069287
Build.prop edits
http://forum.xda-developers.com/showthread.php?t=2256588
ADB, Logcat for n00bs and newbies
http://forum.xda-developers.com/showthread.php?t=2141817
KERNEL DEVELOPMENT(Advanced User)
How to use Github
http://forum.xda-developers.com/showthread.php?t=1877040
Guides on building kernels
http://forum.xda-developers.com/showthread.php?t=1845099&highlight=build+kernel (More useful for BCM devices)
http://forum.xda-developers.com/showthread.php?t=2226199
http://forum.xda-developers.com/showthread.php?t=2152819 (Using NDK)
Add features to your kernel( from XDA-U)
http://xda-university.com/as-a-developer/adding-features-to-your-kernel
TIPS​
Tip-1
Enable CRT screen off animation in ur phone(Will not enable animation when screen is turned on)(does not work on S5830i)
Decompile framework-res.apk
go to res/values find bools.xml and open it.
[/B]
Change this
<bool name="config_animateScreenLights">true</bool>
to this
<bool name="config_animateScreenLights">false</bool>
If this does not work, look for detailed guide with editing of services.jar
Tip-2
Change your android version and name(just a superficial change!)
1. Open your explorer.
2. Go to system/
3. There's a file named "build.prop"
4. Long press and then open in text editor.
5. Find these-
ro.build.display.id - Build Number(Default: GINGERBREAD.XXLA2)
ro.build.version.release- Android version(Default: 2.3.6)
6. Edit, Save and Reboot!
Tip-3
Make status bar transparent(Only transparent for homescreen)
1. Decompile systemui.apk
2. Go to res/layout/status_bar,xml
3.Find android:background=FF000000 and change it to android:background=000000000 for full transparency and to android:background=5F000000 for half transparency.
4.If android:[email protected] statusbar_background (this name can be different) is present in status_bar.xml then you can find the image named statusbar_background in res/drawable-ldpi( or mdpi/hdpi depending on the device) and make that image transparent via image editors!
This simply means our status bar background is drawable and we are providing proper image for it!
Will add more tips soon!
Re: [LINKS][TIPS] Editing system files and more!
Thank js.. Very helpfull for a noob like me..
Sent from my GT-S6500D
thank you very much. it was helpful for me too.
Re: [LINKS][TIPS] Editing system files and more!
EvolutionHybrid said:
Thank js.. Very helpfull for a noob like me..
Sent from my GT-S6500D
Click to expand...
Click to collapse
eserguei said:
thank you very much. it was helpful for me too.
Click to expand...
Click to collapse
Quite strange that the guys who found it useful haven't bothered to atleast hit a small thanks button!
Sent from my Xperia Neo V using xda premium
Ghostfreak NB said:
Quite strange that the guys who found it useful haven't bothered to atleast hit a small thanks button!
Sent from my Xperia Neo V using xda premium
Click to expand...
Click to collapse
I did, but not to you
Also, is the CRT effect not able to be done on a Gingerbread-based stock rom? I decompiled my framework-res.apk with NinjaMorph but, I can't seem to find the dir [APK ROOT]/res/values nor the bools.xml file...
Another question, is it dangerous to my rom's stability if I use somebody else's framework-res.apk? (taking into account that my rom's backed up though, it's not really an issue )
Ah, my phone is a GT-S5830M (same as the GT-S5830i)
El_Dark said:
I did, but not to you
Also, is the CRT effect not able to be done on a Gingerbread-based stock rom? I decompiled my framework-res.apk with NinjaMorph but, I can't seem to find the dir [APK ROOT]/res/values nor the bools.xml file...
Another question, is it dangerous to my rom's stability if I use somebody else's framework-res.apk? (taking into account that my rom's backed up though, it's not really an issue )
Ah, my phone is a GT-S5830M (same as the GT-S5830i)
Click to expand...
Click to collapse
I am also S5830i user but this method won't work due to unknown reasons! I'll edit OP!
Otherwise it will work on other devices!
Don't replace framework-res.apk.. U'll get bricked.. If u are doing ui changes just take the pngs and replace in ur framework-res.apk! But make sure resolution is same as that of original one!
Sent from mass relay
El_Dark said:
Also, is the CRT effect not able to be done on a Gingerbread-based stock rom? I decompiled my framework-res.apk with NinjaMorph but, I can't seem to find the dir [APK ROOT]/res/values nor the bools.xml file...
Click to expand...
Click to collapse
It is yes, but you can only theme images it seems with NinjaMorph, which is why it doesn't list the folders that consist mainly of xmls, which can only be edited after being decompiled.
Was really a very easy n a extremely noov friendly tutorial.
Thnx guys!
Sent from my GT-I9100 using xda premium
VERY NICE GUIDE !!! Thanks a lot ,, many more to learn
Can u give a guide to add notification toggles in aosp ics
Sent from my GT-S5570 using xda premium
really helpful
thanks (pressed already)
How do I change the Model Number?
js2892 said:
I'm gonna give links for various guides to edit these files
Remember, these files are most useful for theming or making ROMs so read on if you want to develop your own ROMs...:good:
A noobs guide for uot kitchen
http://forum.xda-developers.com/showthread.php?t=1676817
Full guide for editing systemui.apk and framework-res.apk and also making a custom rom
http://forum.xda-developers.com/showthread.php?t=2086771
Editing classes.dex inside services.jar
http://forum.xda-developers.com/showthread.php?t=2160478
Change status bar clock color
http://forum.xda-developers.com/showthread.php?t=549309
Make status bar transparent
http://forum.xda-developers.com/showthread.php?t=1891702
Battery Bar Mod
http://forum.xda-developers.com/showthread.php?t=1371330
Decompiling/Recompiling and Advance Theming of 9 PNG
http://forum.xda-developers.com/showthread.php?t=2254824
Android Theming(Big guide with lots of links)
http://forum.xda-developers.com/showthread.php?t=2069287
Build.prop edits
http://forum.xda-developers.com/showthread.php?t=2256588
ADB, Logcat for n00bs and newbies
http://forum.xda-developers.com/showthread.php?t=2141817
KERNEL DEVELOPMENT(Advanced User)
How to use Github
http://forum.xda-developers.com/showthread.php?t=1877040
Guides on building kernels
http://forum.xda-developers.com/showthread.php?t=1845099&highlight=build+kernel (More useful for BCM devices)
http://forum.xda-developers.com/showthread.php?t=2226199
http://forum.xda-developers.com/showthread.php?t=2152819 (Using NDK)
Add features to your kernel( from XDA-U)
http://xda-university.com/as-a-developer/adding-features-to-your-kernel
TIPS​
Tip-1
Enable CRT screen off animation in ur phone(Will not enable animation when screen is turned on)(does not work on S5830i)
Decompile framework-res.apk
go to res/values find bools.xml and open it.
[/B]
Change this
<bool name="config_animateScreenLights">true</bool>
to this
<bool name="config_animateScreenLights">false</bool>
If this does not work, look for detailed guide with editing of services.jar
Tip-2
Change your android version and name(just a superficial change!)
1. Open your explorer.
2. Go to system/
3. There's a file named "build.prop"
4. Long press and then open in text editor.
5. Find these-
ro.build.display.id - Build Number(Default: GINGERBREAD.XXLA2)
ro.build.version.release- Android version(Default: 2.3.6)
6. Edit, Save and Reboot!
Tip-3
Make status bar transparent(Only transparent for homescreen)
1. Decompile systemui.apk
2. Go to res/layout/status_bar,xml
3.Find android:background=FF000000 and change it to android:background=000000000 for full transparency and to android:background=5F000000 for half transparency.
4.If android:[email protected] statusbar_background (this name can be different) is present in status_bar.xml then you can find the image named statusbar_background in res/drawable-ldpi( or mdpi/hdpi depending on the device) and make that image transparent via image editors!
This simply means our status bar background is drawable and we are providing proper image for it!
Will add more tips soon!
Click to expand...
Click to collapse
Hi,
How would I change the Model Number?
rasmutu said:
Hi,
How would I change the Model Number?
Click to expand...
Click to collapse
Please don't quote the whole OP.
go to system/build.prop
open the file and change value of ro.product.model
It seems good. I'm going to click. thank you!

How to make full statusbar transparent on galaxy y duos (gt-s6102)

HOW TO MAKE SYSTEMUI FULL STATUSBAR TRANSPARENT ON GALAXY Y DUOS (GT-S6102)
Requirements:
apktool
gimp OR OTHER editor like photoshop
JRE (Java Runtime Environment)
Deodexed SystemUI.apk ---- you can flash zzzzz.zip from attachment below
YOU NEED TO MAKE YOUR LAUNCHER SUPPORTS TRANSPARENT or you can Download HOLO LAUNCHER or just download zzzzz.zip SUPPORT"S TRANSPARENT.! FILES in tHE ATTACHmENT BELoW..!
NOTE:If you don't know how to use apktool just google it.
Make bACKUP of your SystemUI.apk FIRST BEFORE YOu proCeed
res/drawable-ldpi
RENAME & EDIT:
title_bar_portrait.png >>>>>>> title_bar_portrait.9.png >>> make it landscape
statusbar_background.9.png >>>>>>> statusbar_background.png >>> make it landscape
status_bar_background.png >>> make it portrait
status_bar_close_on.png >>>>>>>> status_bar_close_on.9.png >>> RENAME ONLY
ADD:
gradient.
status_bar_header_background.9.png
status_bar_item_app_background_normal.9.png
status_bar_item_background_focus.9.png
status_bar_item_background_normal.9.png
status_bar_item_background_pressed.9.png
EDIT:
res/layout:
status_bar.xml >>>> first line replace:
Code:
android:background=
Change to:
Code:
android:background="@drawable/gradient"
status_bar_expanded.xml
Replace:
Code:
"@drawable/quickpanel_title_background"
With:
Code:
"@drawable/shade_header_background"
Replace:
Code:
"@drawable/quickpanel_title_background"
With:
Code:
"@drawable/shade_header_background"
Replace:
Code:
"@drawable/quickpanel_title_background"
With:
Code:
"@drawable/shade_header_background"
status_bar_tracking.xml
Replace:
Code:
android:background="#ff8e979f"
With:
Code:
android:background="@drawable/status_bar_background"
THIS IS MY FIRST THREAD SO PLEASE RESPECT ME AND HIT THANKS BuTToN :good: if THIS IS HELPFUL!! YOU CAN ALSO VOTE ON THE POLL ABOVE.
you can ask me if there's an error or what..
if you want an SIMPLE DISCRIPTION you can also download zzzzz.zip then flash it so you can make your statusbar transparent without any error.. :victory:
Sorry for my bad English..
Screen capture.!!
This are my screen shots!
tnks..!
OH THANKS FOR LIKING!! :victory: @blackgamerz22
Please reply iF mY THReaD is good :good: and work on your gt-s6102..
Vargaz.22 said:
OH THANKS FOR LIKING!! :victory: @blackgamerz22
Please reply iF mY THReaD is good :good: and work on your gt-s6102..
Click to expand...
Click to collapse
Thanks for this man
Nice..gonna try it out..
y dnt u try to make ur Rom transparent..it wil match ur status bar.... ..
SORRY!
Sorry but i think i have a wrong with this files i'll fix it so wait please wait.
wats error??
you cant do that with public.xml because not everyones public.xml will be the same
if they have modded things before they will have extra lines and so on so you cant say delete between here and there and replace with this
Also you cant tell someone to use those hex values
hex values relate to smali code and if you change them you also have to change the smali values too or it will force close or display something totally different
for example if I add a png to res/drawable-ldpi and recompile the apk it will add its hex value to the public.xml
you can then reference this hex value in smali to display the png - for example an image next to a volume slider
different frameworks may have different hex values in public.xml especially if things have already been modified and have had things added
In my experience the quicket way to make the statusbar transparent is just by adding a fully transparent png and then changing the android backgroud to a drawable value in status_bar.xml to reference that png
if you want to spend a little more time you can use the colour chooser smali and app so you can set your status bar colour and transparency level to what ever you want when ever you want without decompiling it everytime to change it
For cm7/9 its slightly different - you have to mod some smali and do other things
Working or not??
Himan Boro said:
wats error??
Click to expand...
Click to collapse
Did you try this and you don't get any error??
what rom do you use or did your systemui.apk are modded??
YES!
marcussmith2626 said:
you cant do that with public.xml because not everyones public.xml will be the same
if they have modded things before they will have extra lines and so on so you cant say delete between here and there and replace with this
Also you cant tell someone to use those hex values
hex values relate to smali code and if you change them you also have to change the smali values too or it will force close or display something totally different
for example if I add a png to res/drawable-ldpi and recompile the apk it will add its hex value to the public.xml
you can then reference this hex value in smali to display the png - for example an image next to a volume slider
different frameworks may have different hex values in public.xml especially if things have already been modified and have had things added
yah i know that Sir, that's why i said i'll fix it..
In my experience the quicket way to make the statusbar transparent is just by adding a fully transparent png and then changing the android backgroud to a drawable value in status_bar.xml to reference that png
if you want to spend a little more time you can use the colour chooser smali and app so you can set your status bar colour and transparency level to what ever you want when ever you want without decompiling it everytime to change it
For cm7/9 its slightly different - you have to mod some smali and do other things
Click to expand...
Click to collapse
yah i know that Sir, that's why i said i'll fix it..
i'll ask them to just use my files and flash it to make their systemui deodexed and customized
Hit IT!
JoyLobo said:
Thanks for this man
Click to expand...
Click to collapse
don't just say it Sir HIT IT!!
Hit LIKE :good: and please rate and vote Sir.!~ at the Bottom of the thread there's vote pole and ratings.. just rate it if you like it..!
YES!!
@blackgamerz22 i see.
Add Custom Strings To Status Bar!
Code:
http://forum.xda-developers.com/showthread.php?p=46298824#post46298824
Credits goes to @marcussmith2626 and @EnricoD
Screen Shots!!!
yEH!
Himan Boro said:
Nice..gonna try it out..
y dnt u try to make ur Rom transparent..it wil match ur status bar.... ..
Click to expand...
Click to collapse
i see ur threads and post and im working on it..
Making my first custom rom transparent wooh amazing..

Categories

Resources