Can anyone please help me with theming? - Galaxy Grand Prime Q&A, Help & Troubleshooting

Hi. I am just a newbie, an average guy who only knows how to theme using xposed. I have my Grand Prime XCU 4.4.4 to 5.0.2 already and themed some like my status bar using Flat Style Colored bars. I wanted to color my notification bar the way Flat Style Clored bars does to my status bar. Is it possible? If not, Can anyone please make my notification panel (I meant the Blue color) a lil bit blurry? Like a foggy glass maybe. Also the icons when pressed to white not the usual green. Hehehe. Thanks!

u need to decompile system apps using apktool. i wont teach u how to use apktool. ofcourse it does not end there, u have to know basic theming. probably systemui.apk can be found in system/app partitions but if u want to change everything on the notification panel. u have to decompile the frameworks. google it

Related

[Q] transparent issues

well, before i deoxed my X i never used to have problem changing the notification bar. but now its deoxed and the color changes on it but just not transparent? any ideas? ive tried adb push etc and ninja morph... any ideas or help would be nice. thx
Or what am doing wrong? Save th file as png and opacity almost zero and it still doesn't do it. I could install a theme with transparent notification bar ani could change it works fine. But I like the way mine is set up. Help anyone????
Sent from my DROIDX using XDA App
you need a patched services.jar to display transparency. xUltimate-TP can do this. Also, many themes include a patched services.jar to do this as well as to make fonts white.

Supervilllain - Need a transparent notification bar....please :D

I really love transparent themes and stuff, does anyone know a simple way of changing the notification bar in supervillain rom, making it transparent? A zip file would be niiiiiiiiiice.
I have tried the battery c mod from here which I read worked.
http://forum.xda-developers.com/showthread.php?p=7160751#post7160751
With no luck.

transparent status bar

Does any body now how to make the status bar transparent.
I have googled for hours and can not find it.
Plz help
the status bar in gingerbread is transparent by default.
I think he means the top bar itself, not the dropdown background. Which iirc is not actually transparent, but lots of ROMs have it built in. Also, I think Kyouko should make it
BANG! from my shooter...
I am talking about the the top bar. I am running cm7.
the only transparent bars I can find are for hdpi roms.
il Duce said:
Also, I think Kyouko should make it
Click to expand...
Click to collapse
<_<
isnt that what ZduneX25's Theme Patch is for, which is supported by the gingerbreadEx theme?
Thanks kyouko. A little to much work for me though
To get transparency decompile SystemUI.apk
and navigate to /res/layout/status_bar_tracking.xml
and change the value to #77000000
and dont forget THANX if u liked....
pratyush.creed said:
To get transparency decompile SystemUI.apk
and navigate to /res/layout/status_bar_tracking.xml
and change the value to #77000000
and dont forget THANX if u liked....
Click to expand...
Click to collapse
but how to transparent the top bar?
First off, you'll need Gingerbread. That's the Android OS that supports transparency in the top bar. Second, you'll need something to change your top bar color. I do believe CyanogenMod 7 has an option for it somewhere. You'll have to change the alpha setting on it to adjust transparency.
thattypicalnerd said:
First off, you'll need Gingerbread. That's the Android OS that supports transparency in the top bar. Second, you'll need something to change your top bar color. I do believe CyanogenMod 7 has an option for it somewhere. You'll have to change the alpha setting on it to adjust transparency.
Click to expand...
Click to collapse
Its under display
i need a status bar !
My phone use to be rooted but when unrooting it i accidentally deleted the systemui.apk , is there anyway to get it back without rooting it again ? i tried downloading it & moving it to system/app but everytime i try it says "cannot be moved"

statusbar tracking

hi all, i have followed the guide to get fullscreen statusbar expanded, and now i'm trying te add the statusbar icons to statusbar tracking, so it looks like you drag the statusbar down. so far i got the carrier text and the clock working, but the icons won't work. anybody got any idea on how to get this working? screenshots attached
mjz2cool said:
hi all, i have followed the guide to get fullscreen statusbar expanded, and now i'm trying te add the statusbar icons to statusbar tracking, so it looks like you drag the statusbar down. so far i got the carrier text and the clock working, but the icons won't work. anybody got any idea on how to get this working? screenshots attached
Click to expand...
Click to collapse
Buddy first I will explain what u have done.
In statusbar tracking inside close drag handle u removed image view created a new layout and added carrier text and com.android.systemui.statusbar.clock to it. Now u also want status icons to be added to it. So u copied the linear layout with id status icons to ur layout in statusbar tracking and compile and u get fc.
Now I explain y. In ur statusbar.xml at start there is a line com.android.systemui.statusbar.statusbarview and then inside that all ur things are placed. The status icons are showed not just because they have id but because they have a method linked to statusbarview and when ur statusicons id is used inside that view than only it works. And if u say y clock and carrier work. They world because they are independent smalli's. Again same is not the case with dateview. Even tough we have different dateview.smalli but it is linked inside statusbarview.smalli so after pulldown it shows dateview on statusbar. And if we want to remove dateview we change its text and backgrounds color to transparent. Basically we hide it nor remove it. If u delete com.android.systemui.statusbar.dateview from statusbar.xml u are bound to get fc bcoz statusbarview.smalli and statusbarservice smalli is made to show it and they found it missing in layout even tough its code is there in smalli file.
Now I give a solution. If u want to bring status icons..I suggest u use statusbar greper coz it has all the status icons needed and u can theme icons to. Or u will have to duplicate the whole status icons method which as far as I know I very time taking and very less chance of succeeding.
I am telling coz I tried the thing but it didn't work and my new systemui mod already has greper where u want them to be and works properly. I haven't released it yet. Good luck
Sent from my GT-S6102 using Xparent BlueTapatalk 2
samsoul16 said:
Buddy first I will explain what u have done.
In statusbar tracking inside close drag handle u removed image view created a new layout and added carrier text and com.android.systemui.statusbar.clock to it. Now u also want status icons to be added to it. So u copied the linear layout with id status icons to ur layout in statusbar tracking and compile and u get fc.
Now I explain y. In ur statusbar.xml at start there is a line com.android.systemui.statusbar.statusbarview and then inside that all ur things are placed. The status icons are showed not just because they have id but because they have a method linked to statusbarview and when ur statusicons id is used inside that view than only it works. And if u say y clock and carrier work. They world because they are independent smalli's. Again same is not the case with dateview. Even tough we have different dateview.smalli but it is linked inside statusbarview.smalli so after pulldown it shows dateview on statusbar. And if we want to remove dateview we change its text and backgrounds color to transparent. Basically we hide it nor remove it. If u delete com.android.systemui.statusbar.dateview from statusbar.xml u are bound to get fc bcoz statusbarview.smalli and statusbarservice smalli is made to show it and they found it missing in layout even tough its code is there in smalli file.
Now I give a solution. If u want to bring status icons..I suggest u use statusbar greper coz it has all the status icons needed and u can theme icons to. Or u will have to duplicate the whole status icons method which as far as I know I very time taking and very less chance of succeeding.
I am telling coz I tried the thing but it didn't work and my new systemui mod already has greper where u want them to be and works properly. I haven't released it yet. Good luck
Sent from my GT-S6102 using Xparent BlueTapatalk 2
Click to expand...
Click to collapse
thanks for the explanation, it makes sense actually,
but unfortunately i've got a new phone, so i won't try to do this anymore
mjz2cool said:
thanks for the explanation, it makes sense actually,
but unfortunately i've got a new phone, so i won't try to do this anymore
Click to expand...
Click to collapse
Buddy u can press the thanks button if it helped. And which new fone u got??
Sent from my GT-S6102 using Xparent BlueTapatalk 2
samsoul16 said:
Buddy u can press the thanks button if it helped. And which new fone u got??
Sent from my GT-S6102 using Xparent BlueTapatalk 2
Click to expand...
Click to collapse
done, and see my sig

Make statusbar what ever png u want

Hi guys i havn`t been on xda in a minute, my other name is daman215, i cant seem to retrieve that acct. Any way i found out that you can use a png for the status bar i just name a png status_background.9.png and replace the one in system ui and wala ,look at the screen shot. This is a status bar i use in rainmeter pc theming program, it also works with the navbar no fc or nothing you cant use tinted statusbar apps the but now you can make status bars with shadows under them. Oh and i did this with out decompiling for those who want to know just paste into system ui using 7zip or win rar. Sorry if some of you like more pronunciation i can`t type that good, mods can u help me retrieve my old acct i dnt have the email i use. Hit the Thanks button if this was helpfu,l forgot to add u have to have transparent notifacations turned on in your launcher i use nova

Categories

Resources