[GUIDE][CM11][KK] How to make Transparent Status and Navigation Bar on KitKat 4.4 - Android General

Hello Everyone!!
Lots of people asked me how to make transparent status and transparent navigation bar on android 4.4 kitkat as it supports transparent status and navigation bar. So i thought of writing this guide so that every one get's benefit of this.
Here u go:
To make use of transparent status and navigation feature of Android 4.4 in your activity(it may be launcher or any activity):
Add these below lines in style.xml of your activity/launcher's main activity theme.
HTML:
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowTranslucentNavigation">true</item>
Where attribute android:windowTranslucentStatus set the transparency of status bar and android:windowTranslucentNavigation used for transparency of navigation bar
Or you can also use one of these themes as your parent
HTML:
Theme.Holo.NoActionBar.TranslucentDecor
Theme.Holo.Light.NoActionBar.TranslucentDecor
By enabling translucent system bars, your layout will fill the area behind the system bars, so you must also enable fitsSystemWindows for the portion of your layout that should not be covered by the system bars.
HTML:
<item name="android:fitsSystemWindows">true</item>
You can use anyone of the above approach to make transparent System bars of your activity.
You can also read original android docs Here
If u like my work, press thanks:laugh:
.

Me getting error while recompiling
CAN U PLZ MAKE TRANSPARENT BAR FOR THAT GIVEN APK :????????

gmp009 said:
Me getting error while recompiling
CAN U PLZ MAKE TRANSPARENT BAR FOR THAT GIVEN APK :????????
Click to expand...
Click to collapse
Bro as above mentioned themes were introduced in Kitkat so they doesn't work with older versions so in order to use those themes in your apk decopile your apk with kitkat framwork-res.apk(available in any CM11 Rom) and then compile it.It will work.try it let me know if that works:laugh:

ashishdubey said:
bro as above mentioned themes were introduced in kitkat so they doesn't work with older versions so in order to use those themes in your apk decopile your apk with kitkat framwork-res.apk(available in any cm11 rom) and then compile it.it will work.try it let me know if that works:laugh:
Click to expand...
Click to collapse
now getting this :/

gmp009 said:
now getting this :/
Click to expand...
Click to collapse
No problem that's warning ignore it..try to u use compiled apk.!!!

ashishdubey said:
no problem that's warning ignore it..try to u use compiled apk.!!!
Click to expand...
Click to collapse
i did but that launcher is not working now

gmp009 said:
i did but that launcher is not working now
Click to expand...
Click to collapse
what issue u r getting send me the logcats??

ashishdubey said:
what issue u r getting send me the logcats??
Click to expand...
Click to collapse
Now that launcher is not showing up its like not installed but its in system/app lol

gmp009 said:
Now that launcher is not showing up its like not installed but its in system/app lol
Click to expand...
Click to collapse
Might be u r getting some signature issue.

ashishdubey said:
Might be u r getting some signature issue.
Click to expand...
Click to collapse
I did sign now its working but its same no transparency......

gmp009 said:
hmm so how can i sign my app now ?
Click to expand...
Click to collapse
Read this post u will find out how to sign apk http://forum.xda-developers.com/showthread.php?t=2251719 .download jarsigner for that.Then install or move that signed apk to system>app.

ashishdubey said:
Read this post u will find out how to sign apk http://forum.xda-developers.com/showthread.php?t=2251719 .download jarsigner for that.Then install or move that signed apk to system>app.
Click to expand...
Click to collapse
I DID ITS WORKING BUT NO TRANSPARENCY Still same

gmp009 said:
I DID ITS WORKING BUT NO TRANSPARENCY Still same
Click to expand...
Click to collapse
bro i m not able to install ur apk as some libs are missing also i m using sony phone.i have checked ur manifest.xml and found that there is no theme defined in your main activity "com.android.launcher2.Launcher" define a theme and add transparent status bar styles corresponding to that theme in style.xml. hope that works

Thanks for this awesome guide!
How can I get the status bar to imitate the colour scheme of the top action bar? Blue bit.
I added fit window option but it didn't do anything.
Edit : Here's the screenshot!
Sent from my Nexus 5 using Tapatalk

krishneelg3 said:
Thanks for this awesome guide!
How can I get the status bar to imitate the colour scheme of the top action bar? Blue bit.
I added fit window option but it didn't do anything.
Edit : Here's the screenshot!
Sent from my Nexus 5 using Tapatalk
Click to expand...
Click to collapse
Bro try to remove window:background attribute from theme or make it transparent instead of white!

ashishdubey said:
Bro try to remove window:background attribute from theme or make it transparent instead of white!
Click to expand...
Click to collapse
I removed it, it went back to normal.
What exactly do I do to make it transparent??? change /white to transparent or do i need to change it from <item to <color ? and make it #00000000?
Explain it a bit Thanks for the help!
Edit: Changed
<item name="android:windowBackground">@*android:color/white</item> to
<color name="android:windowBackground">#0000000</color>
And compiled it, it didn't compile, anything i'm doing wrong here?
Sent from my Nexus 5 using Tapatalk

krishneelg3 said:
I removed it, it went back to normal.
What exactly do I do to make it transparent??? change /white to transparent or do i need to change it from <item to <color ? and make it #00000000?
Explain it a bit Thanks for the help!
Edit: Changed
<item name="android:windowBackground">@*android:color/white</item> to
<color name="android:windowBackground">#0000000</color>
And compiled it, it didn't compile, anything i'm doing wrong here?
Sent from my Nexus 5 using Tapatalk
Click to expand...
Click to collapse
hey give define that color in colors.xml like <color name="any_name">#00000000</color>
then in style.xml use it like this <item name="android:windowBackground">@color/any_name</item>

ashishdubey said:
hey give define that color in colors.xml like <color name="any_name">#00000000</color>
then in style.xml use it like this <item name="android:windowBackground">@color/any_name</item>
Click to expand...
Click to collapse
Okay, it compiled. I made two with one being color/white and the new one color/trans
The white one looked whites with shades. and the transparent one was just black :s, the status bar didn't blend into the blue action bar? it just went black. Any idea what happened?
EDIT : Fixed i moved the fitWindow function to the theme window. all is working! Thanks for this guide. And very helpful OP user!

So I defined a new colour in color.xml
<color name="nexus">#ff4d9ad8</color>
I went into styles, and changed
<item name="android:windowBackground">@*android:color/transparent</item> to
<item name="android:windowBackground">@*android:color/nexus</item>
Now when compiling, it gives off an error, doesn't compile?
Thanks for the help!

krishneelg3 said:
So I defined a new colour in color.xml
<color name="nexus">#ff4d9ad8</color>
I went into styles, and changed
<item name="android:windowBackground">@*android:color/transparent</item> to
<item name="android:windowBackground">@*android:color/nexus</item>
Now when compiling, it gives off an error, doesn't compile?
Thanks for the help!
Click to expand...
Click to collapse
Wrong way of using it...
use like this <item name="android:windowBackground">@color/nexus</item>:laugh:

Related

transparent status bar?

i am on a rooted german ICS rom and was wondering wether its poosible to have a transparent status bar?
I'm searching for itit too, i know it is possible but how?
I think that it is possible, but to make it happened you have to change some .png for the statusbar.
I believe it requires smali edits in systemui.apk
Sent from my GT-N7000
actually you can mod the apk file and edit the color of status bar as alpha blending = 1
this is the method the status bar is drawn as far as i recall it doesn't have PNG files for the actual background though you can define that too.
look at this:
http://forum.xda-developers.com/showthread.php?t=1531222
http://forum.xda-developers.com/showthread.php?t=1624819
you will find it here
wich png or xml you need to edit? by the SystemUI.apk?
_giggino_ said:
wich png or xml you need to edit? by the SystemUI.apk?
Click to expand...
Click to collapse
if i'am not mistaken it's at the unpacked classes by the resources/values/... a file in there is the one needed sorry but i dont remember the exact name of it XD
I m searchin fr it fr a long tym...and still lookin fr a simple way to make it transparent....I dunn want to flash another rom fr just a transparent bar...im on goa rom and lovin it...best rom...
better you follow this guide
http://forum.xda-developers.com/showthread.php?t=1085118
sahilarora2003 said:
I m searchin fr it fr a long tym...and still lookin fr a simple way to make it transparent....I dunn want to flash another rom fr just a transparent bar...im on goa rom and lovin it...best rom...
Click to expand...
Click to collapse
You can using a custom status bar on stock lq2 its transparent with bunch of toggles looks much better then the stock one all icons in blue with 15 toggles
I will add xda thread link if you guys interested
Sent from my GT-N7000 using xda premium
crossmedia said:
You can using a custom status bar on stock lq2 its transparent with bunch of toggles looks much better then the stock one all icons in blue with 15 toggles
I will add xda thread link if you guys interested
Sent from my GT-N7000 using xda premium
Click to expand...
Click to collapse
I just want to flash the transparent status bar..i hv working blue toggles which are included in the rom which im using..i love it.is there any way i can make it transparent by editing some files or smthin like tht?
Sent from my GT-N7000 using xda app-developers app
As mentioned before, its a smali edit. Then you can either set the status bar colour to transparent or set the drawable to look for an image. I'll post a quick tutorial when I get to my computer. Really easy to do providing you know how to (de)compile properly
Handwritten by my AOKP'd up Desire HD & Note
K Dotty said:
As mentioned before, its a smali edit. Then you can either set the status bar colour to transparent or set the drawable to look for an image. I'll post a quick tutorial when I get to my computer. Really easy to do providing you know how to (de)compile properly
Handwritten by my AOKP'd up Desire HD & Note
Click to expand...
Click to collapse
I'll wait fr ur tutorial...
Sent from my GT-N7000 using xda app-developers app
Im writing this presuming you already know how to decompile ICS apk's, if not.......google is your friend
Make a backup of your systemUI just incase.
Decompile your SystemUI,
Navigate to /SystemUI/smali/com/android/systemui/statusbar/StatusBar.smali
In StatusBar.Smali, search for this line;
Code:
invoke-direct/range {v11 .. v16}, Landroid/view/WindowManager$LayoutParams;-><init>(IIIII)V
A few lines above this change;
Code:
const/16 v16, [B]0x4[/B]
To
Code:
const/16 v16, [B]-0x3[/B]
Save the file then navigate to SystemUI/res/values/drawables.xml
Look for the following line;
Code:
<item type="drawable" name="status_bar_background">[B]#ff000000[/B]</item>
Change the hex value (#ff000000) the what ever you want ((ff = 100% transparency)(000000 = black)
#00000000 - completely transparent
#7f000000 - roughly 50% translucent I think
Save the file then recompile SystemUI.apk, and then push the apk back to your phone with the correct permissions and if compile correctly you should have a transparent status bar
If something goes wrong, I'm not responsible....blah blah blah!!
Iv only done this on CM9 & AOSP/AOKP but it should work with stock/tw roms as long as they're ics.
I'm still not next to my computer so I can't remember the line of code to set the status bar as an image rather than a color, I'll post it as soon as I get home.
Handwritten by my AOKP'd up Desire HD & Note
How do I get a background Image, Like the attached Screenshot ?
Thanks!

[HOW-TO][GUIDE][CM-9/ICS] Changing Background of Recent Apps [21/4/13]

Change Background Of Recent Apps.​
NOTE:
-This Works only with Sense4.0a,ICS,CM-9 [Trust me I've tested it myself]
-I'll take the Black Color Code to Change the Background.
-Read before posting Queries.
-Changing Background-- Increases Smoothness
Click to expand...
Click to collapse
TUTORIAL :
Click to expand...
Click to collapse
Pull SystemUI.apk from your Phone.
Decompile the APK Using Any APK Decompiler.
Navigate to res/values/drawables.xml
Search "<item type="drawable" name="status_bar_recents_background_solid">#b3000000</item>" inside "drawables.xml"
Change The Color Code That is "#b3000000" To "#ff000000" to make it black.
You can Change to any color you want, Just change the color code.
Save the xml.
Recompile APK
Sign the APK
Push it in /system/app
You're free to Enjoy .
Open this Thread and Hit Thanks. Least You can do.
Thank's. Try it and let me know.
Click to expand...
Click to collapse
Mine.
Request
Can you add some screen ? and can we change it blue/purple or ....
good idea....:good:
XenoMorphv2 said:
Can you add some screen ? and can we change it blue/purple or ....
good idea....:good:
Click to expand...
Click to collapse
Yup you can If you're using MiniCM9 I can upload for you with grey background. Post the screenshot here too. Actually I'm on Sense 4 currently and lazy to change my ROM . If you want just post here.
Sent via HTC Sense.
Why can't you just post systemui.apk here only , modded one with black recent apps panel ?
Regards
via HTC Sense
Blue3125 said:
Why can't you just post systemui.apk here only , modded one with black recent apps panel ?
Regards
via HTC Sense
Click to expand...
Click to collapse
Okay I'll but later. You can follow the guide too

[MOD][CM10.1]Centered Clock (for now) [Currently Alpha 8]

[MOD][CM10.1]Centered Clock (for now) ​
How to Install?​
1.Put the file to your sdcard
2.boot into recovery
3.flash the file
4.done
note:if you don't like the mod just flash backup in universal flasher folder
Download
CM10.1 ALPHA 5
100% Tranparent Status Bar+Centered Clock+White Clock:
DropBox
CM10.1 ALPHA 6
(alpha 6 dhiru latest build)
100% Transparent Status Bar+Centered Clock+White Clock
DropBox
CM10.1 ALPHA 7
Centered Clock
as per request for now only centered clock for transparent status bar use Tweakbox for Xposed Framework
DropBox
CM10.1 ALPHA
Centered Clock
Thanks for @martin.la.gib
martin.la.gib said:
Center Clock for CM10.1 A8 : Centerclock CM10.1 A8 Blue ICS / Grey
ATTENTION : this MOD is not compatible with other MOD who used an other SystemUI.apk ("Task Manager in recent app" by TopDroid for exemple)
There are 2 colour : Blue ICS (SystemUI_center_clock.apk) and in grey (SystemUI_center_clock__grey.apk)
If you no happy, to return on default it's : SystemUI.apk
Installation :
- put the apk on your SD card
- with a ROOT explorer (Solid Explorer for exemple) go to : /system/app
- put the apk here (verify permissions :-rw-r--r--) and delete the older SystemUI.apk
- the phone reboot automatically
- Enjoy !!!
Click to expand...
Click to collapse
GUIDE:
If you want to change the colour of the clock
(For Centered Clock)
1.Open res/layout/status_bar.xml
find this line
Code:
<com.android.systemui.statusbar.policy.Clock android:textAppearance="@style/TextAppearance.StatusBar.Clock" android:textColor="#ffffff" android:gravity="center" android:id="@id/clock" android:paddingLeft="6.0dip" android:clickable="false" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
2.Change this:
Code:
android:textColor="[B]#ffffff[/B]"
#ffffff : White
you can find hex code to change the colour of the clock
3.Done !
If you want to change the colour of the clock
(For Stock Clock)
1.Open res/Values/Styles.xml
find this code:
Code:
<style name="TextAppearance.StatusBar.Clock" parent="@*android:style/TextAppearance.StatusBar.Icon">
<item name="android:textSize">16.0dip</item>
<item name="android:textStyle">normal</item>
<item name="android:textColor">#ffffffff</item>
</style>
2.change this
Code:
<item name="android:textColor">#ffffffff</item>
#ffffff: white
@*android:color/holo_blue_light: stock colour (Blue)
3.Done!
​
Sent from my GT-I9003 using xda premium
Upload you framework-res.apk,systemui.apl,and androidpolicy.jar i think same as with another transparent mod
Sent from my GT-I9003 using xda premium
martin.la.gib said:
Yes, here they are : framework-res.apk ; SystemUI.apk ; android.policy.jar
Thank you
Click to expand...
Click to collapse
umm sorry sir,i always fail to recompilling it
martin.la.gib said:
do you know why ? :/
Click to expand...
Click to collapse
dunno :\ you are using alpha 6 latest build by dhiru ? if yes try in OP
martin.la.gib said:
Tes ok I'll try
---------- Post added at 09:48 AM ---------- Previous post was at 09:44 AM ----------
Link error ...
Click to expand...
Click to collapse
DropBox here you go:victory:
Yes i can,wait i'll do it for you
White clock or blue clock?
Sent from my GT-I9003 using xda premium
Thank you for this mod It cool :good:
And with the speed of the Internet 0.00kb/s. There is a modification?
If u guys open any app thats not coming with the rom, how does the statusbar look then? Like ugly weird grey/white or something?
Thanks I will try,
it looks nice
I have flashed and it looks very nice.
Is there a way to modify the transparency of the status bar? I mean, something similar such the clock changing color?
Thanks
Try module from xposed
Sent from my GT-I9003 using xda premium
@martin.la.gip hey friend i was make one for you Centered blue clock,if you want transparent use xposed module:good:
SORRY FOR LATE UPDATE cause i had an exam
ALPHA 8 by @martin.la.gib
i have whiship cm 10.1 ace plus how i know my rom alpha version
Different phone different rom ma friend
Sent from my GT-I9003 using xda app-developers app
The links doesn't work??
Re-upload may be please??

[GUIDE] Shadow/gradient on statusbar like GN3/S4/KitKat

Hello,
Already posted HERE, thank you to @ATTACK.
I've tried it and it's works on our Note. You can skip step modify android.policy.jar :good:
ikromy said:
Hello,
Already posted HERE, thank you to @ATTACK.
I've tried it and it's works on our Note. You can skip step modify android.policy.jar :good:
Click to expand...
Click to collapse
What did you exactly do?
Share your moded SystemUI.apk:good:
+ 1000. Also if you have just posted this thread for the sake of it, Mods please close the thread if there is no response from the OP.
mjrifath said:
Share your moded SystemUI.apk:good:
Click to expand...
Click to collapse
Please !!
ikromy said:
Hello,
Already posted HERE, thank you to @ATTACK.
I've tried it and it's works on our Note. You can skip step modify android.policy.jar :good:
Click to expand...
Click to collapse
This is a very intresting thread..please dont close it.. I am facing problem in compling systemui...Please Please..share your SystemUI for stock deodexed rom..
akhil093 said:
This is a very intresting thread..please dont close it.. I am facing problem in compling systemui...Please Please..share your SystemUI for stock deodexed rom..
Click to expand...
Click to collapse
+1! Lost my modded wallpapers with the fake shadow, Please share!
ok
Hello,
there are many ways to make status bar shadow, here's I share the simple way..
1. after decompile your systemUI, Go to SystemUI.apk\res\values and open drawables.xml and focus on this line and remove it:
Code:
<item type="drawable" name="status_bar_background">xxxxxxxxxxxxxxxxx</item>
2. create file : \SystemUI.apk\res\drawable\status_bar_background.xml and fill with this :
Code:
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android">
<gradient android:startColor="#00000000" android:endColor="#66000000" android:angle="@integer/status_bar_recents_bg_gradient_degrees" name="status_bar_background" />
</shape>
in previous guide, the developer wrote "android:endColor" with value "#99000000", it's your choices...
3. Compile it. Done.
Download HERE from Sweet ROM 10.5 Black
ikromy said:
Hello,
there are many ways to make status bar shadow, here's I share the simple way..
1. after decompile your systemUI, Go to SystemUI.apk\res\values and open drawables.xml and focus on this line and remove it:
Code:
<item type="drawable" name="status_bar_background">xxxxxxxxxxxxxxxxx</item>
2. create file : \SystemUI.apk\res\drawable\status_bar_background.xml and fill with this :
Code:
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android">
<gradient android:startColor="#00000000" android:endColor="#66000000" android:angle="@integer/status_bar_recents_bg_gradient_degrees" name="status_bar_background" />
</shape>
in previous guide, the developer wrote "android:endColor" with value "#99000000", it's your choices...
3. Compile it. Done.
Download HERE from Sweet ROM 10.5 Black
Click to expand...
Click to collapse
A BIG THANKS to you mate... you made my day ... THANK YOU SOOO MUCH BRO..
ikromy said:
Hello,
Already posted HERE, thank you to @ATTACK.
I've tried it and it's works on our Note. You can skip step modify android.policy.jar :good:
Click to expand...
Click to collapse
Can you please share your transparent Google search box (5x1) widget .. as in your screenshots... I searched it evrywhere on xda and google but everytime i found 4x1 (non-resizeable)...which doesn't suits to our note...please share if you have..
ok
akhil093 said:
Can you please share your transparent Google search box (5x1) widget .. as in your screenshots... I searched it evrywhere on xda and google but everytime i found 4x1 (non-resizeable)...which doesn't suits to our note...please share if you have..
Click to expand...
Click to collapse
tomorow
ikromy said:
tomorow
Click to expand...
Click to collapse
Thanks in advance.
1) the shadow is too low --> works fine
2) Doesnt really work well, coz i also use Tinted Status bar.. doesnt work with tht.
3) Doesnt work with Gravity Box either.

[Q] how to change notification panel style...

Hi Everyone...
Recently i had took a simple project...trying to mod a rom and give it a new look...i did all things what i know... like Systemui,Farmwork_res,Settings, etc,etc...but now i want to change the notification panel of my rom...and want to add lawa v5 notification panel style on my rom...But i didn't find any tutorial about this...I asked one bro and he said that to change notification panel you have to edit System ui/res/values/style.xml...But he didn't tell me that what i change in this xml...Can anybody help me in changing notification panel style?!!or give me a proper tutorial please....
Md.Shafikul.islam said:
Nobody helps me... :'(
Click to expand...
Click to collapse
hey, i dont know how to do that. but i can recommend that ( actually i am doing in that way)
1. find any systemui.apk that has the style what you want.
2. decompile it and go to res/values/style.xml
3. match your style.xml and your downloanded style.xml
4. try to simulate your xml to that xml .
hope this helps.
thanks bro...
SmiLeToLife said:
hey, i dont know how to do that. but i can recommend that ( actually i am doing in that way)
1. find any systemui.apk that has the style what you want.
2. decompile it and go to res/values/style.xml
3. match your style.xml and your downloanded style.xml
4. try to simulate your xml to that xml .
hope this helps.
Click to expand...
Click to collapse
i will try it...but can i change my styles with another style?mean replaced it?!!or add all things from another style to my style?!!by notepad?!!
Md.Shafikul.islam said:
i will try it...but can i change my styles with another style?mean replaced it?!!or add all things from another style to my style?!!by notepad?!!
Click to expand...
Click to collapse
don't try to change whole lines !!!
for example :
in your style.xml -- > <style name="BackgroundOnlyTheme" parent= @ANDROID:style/Theme.Holo.
in dowloanded style.xml --> <style name="BackgroundOnlyTheme" parent= @ANDROID:style/Theme.Holo.Light">
so you have to edit your line and add '' Light '' end of it. it will look like @ANDROID:style/Theme.Holo.Light
The important thing is you have to figure out what lines are related to your notification panel!!!
I am doing the same thing right now. I have couple cm11 themes and i am changing my sytles, colors, dimens according to theme's styles, colors.xml etc ..
I am using notepad++.
Just open the 2 xmls that you wanan check. Put them side by side and check the lines.
if something going wrong when your systemui get function ... you have to come back to your xml and check the line again.
The last say --> maybe you will need to change some drawble xmls and some drawble hdpi/ xhdpi/ xxhdpi files according to your dpi .
thanks again
SmiLeToLife said:
don't try to change whole lines !!!
for example :
in your style.xml -- > <style name="BackgroundOnlyTheme" parent= @ANDROID:style/Theme.Holo.
in dowloanded style.xml --> <style name="BackgroundOnlyTheme" parent= @ANDROID:style/Theme.Holo.Light">
so you have to edit your line and add '' Light '' end of it. it will look like @ANDROID:style/Theme.Holo.Light
The important thing is you have to figure out what lines are related to your notification panel!!!
I am doing the same thing right now. I have couple cm11 themes and i am changing my sytles, colors, dimens according to theme's styles, colors.xml etc ..
I am using notepad++.
Just open the 2 xmls that you wanan check. Put them side by side and check the lines.
if something going wrong when your systemui get function ... you have to come back to your xml and check the line again.
The last say --> maybe you will need to change some drawble xmls and some drawble hdpi/ xhdpi/ xxhdpi files according to your dpi .
Click to expand...
Click to collapse
thanks again..but can you say that whichs xml on drawable may need to edit?plz.....
Md.Shafikul.islam said:
thanks again..but can you say that whichs xml on drawable may need to edit?plz.....
Click to expand...
Click to collapse
it depends on the rom ...
i had to edit
- ic_notify_button_bg.xml
- notification_header_bg.xml
- qs_tile_background.xml
- system_bar_notification_header_bg.xml
in drawble. I am running kitkat 4.4
maybe you need to edit those xmsl as well, maybe you dont need, maybe you dont have those xmls. not sure
Okey...got it....
SmiLeToLife said:
it depends on the rom ...
i had to edit
- ic_notify_button_bg.xml
- notification_header_bg.xml
- qs_tile_background.xml
- system_bar_notification_header_bg.xml
in drawble. I am running kitkat 4.4
maybe you need to edit those xmsl as well, maybe you dont need, maybe you dont have those xmls. not sure
Click to expand...
Click to collapse
:good: last question. do i change the another's xml in values too?!!like color.xml....etc.etc?!!
Md.Shafikul.islam said:
:good: last question. do i change the another's xml in values too?!!like color.xml....etc.etc?!!
Click to expand...
Click to collapse
maybe ... it depends on the theme's color and style. For instance: you will set your notifaction panel is white and if ur text color is white then you will not be able to read/see your notification you gotta see what's hapening after editing styles ... if it's ok then no problem. if it is as my mention then you gotta edit your colors.xml ...
i hope you got the concept of the work.
you can search any tutorial for editing notification panel. All necessary steps can be found. according to those tutorials you can edit your systemui.
For instance:
In the tutorial will say let's edit this line according to that .... you have to find this line at the xml in your lewa systemui and edit according to it
good luck happy theming ...

Categories

Resources