How to change this colour become white ?
GSculerlor said:
How to change this colour become white ?
Click to expand...
Click to collapse
It is in framework-res.apk
It is something related with progress bar. I don't remember exact name. I will check exact name and tell you.
It can also be changed from UOT Kitchen.
Sent from my GT-S5360 Gadget of Mass Destruction using xda-app
Using CWM........Busybox Commands........No I use my hands
hnkotnis said:
It is in framework-res.apk
It is something related with progress bar. I don't remember exact name. I will check exact name and tell you.
It can also be changed from UOT Kitchen.
Sent from my GT-S5360 Gadget of Mass Destruction using xda-app
Using CWM........Busybox Commands........No I use my hands
Click to expand...
Click to collapse
Ok, its helpful if you can tell me
GSculerlor said:
Ok, its helpful if you can tell me
Click to expand...
Click to collapse
There is file in drawable. Its name start from "progress_horizontal".
Press thanks if helped.
hnkotnis said:
There are 3 files. Their names start from "progress_primary_".
Press thanks if helped.
Click to expand...
Click to collapse
where is it ? and what should be changed ?
GSculerlor said:
where is it ? and what should be changed ?
Click to expand...
Click to collapse
decompile framework-res.apk
goto res/drawable
open progress_horizontal.xml
change the hex colours to the colours you want
I think thats the colours - if not it will be in another similar xml file
marcussmith2626 said:
decompile framework-res.apk
goto res/drawable
open progress_horizontal.xml
change the hex colours to the colours you want
I think thats the colours - if not it will be in another similar xml file
Click to expand...
Click to collapse
Thanks, that helpful !
Related
hello, is it possible to edit the services.jar and change the status bar color for the time and date on a mac? or can you only do that on windows...? TIA
xCHPx said:
hello, is it possible to edit the services.jar and change the status bar color for the time and date on a mac? or can you only do that on windows...? TIA
Click to expand...
Click to collapse
I believe right now the only "easy way" is through xUltimate for windows. What mods do u want for services.jar?
Sent from my DROIDX using XDA App
Yeah I think you gotta have a windows pc. They're better anyway
lol the only thing I want is to change the color of the date and time to black!!! is that too much to ask for?!?! gah.
does somebody wanna do it for me? I'll send you the services.jar and all you need to do is change it so the date and clock colors are black.
xCHPx said:
lol the only thing I want is to change the color of the date and time to black!!! is that too much to ask for?!?! gah.
does somebody wanna do it for me? I'll send you the services.jar and all you need to do is change it so the date and clock colors are black.
Click to expand...
Click to collapse
U can post it here or email it to me. [email protected] and I will get it done for u
Sent from my DROIDX using XDA App
SysAdmin-X said:
U can post it here or email it to me. [email protected] and I will get it done for u
Sent from my DROIDX using XDA App
Click to expand...
Click to collapse
here it is: http://www.mediafire.com/?k71ug6q82i46kj8
And one more question... What do I have to edit to change the popup menu that you get when you press the far left button text from white to black?
Services.jar
Here ya go! Let me know if this is right.
Just rename the file services.jar instead of .zip
SysAdmin-X said:
Here ya go! Let me know if this is right.
Just rename the file services.jar instead of .zip
Click to expand...
Click to collapse
works perfectly dude! thanks. You win credit for helping me for this theme!
xCHPx said:
works perfectly dude! thanks. You win credit for helping me for this theme!
Click to expand...
Click to collapse
No problem man, glad I could help
I have changed the style of BlurDialer.apk & BlurPhone.apk.
I wanna change the background color of text message(Conversations.apk) from white to black,
but i can't find where i should edit.
i checked lots of apk, like blur-res.apk(in framework)..
but it still useless.
is there anybody can tell me how can i change it ?
kynuspro said:
I have changed the style of BlurDialer.apk & BlurPhone.apk.
I wanna change the background color of text(Conversations.apk) from white to black,
but i can't find where i should edit.
i checked lots of apk, like blur-res.apk(in framework)..
but it still useless.
is there anybody can tell me how can i change it ?
Click to expand...
Click to collapse
If what u mean is changing the background colour of ur sms thg....u could try handcent sms. Its available in d market for free. I haven't tried it but the reviews seem pretty convincing
Sent from my MotoA953 using XDA App
agent008my said:
If what u mean is changing the background colour of ur sms thg....u could try handcent sms. Its available in d market for free. I haven't tried it but the reviews seem pretty convincing
Click to expand...
Click to collapse
Thx anyway, I tried it before..
I just dont wanna use any other applications, so I'd like to edit the original one.~
I hope that I can solve it as soon as possible!~
Thx for ur reply!
kynuspro said:
Thx anyway, I tried it before..
I just dont wanna use any other applications, so I'd like to edit the original one.~
I hope that I can solve it as soon as possible!~
Thx for ur reply!
Click to expand...
Click to collapse
i did some searching for you and found this. such code language is greek to me as im not too good with coding jargon. hope it helps you:
Q- I want to be able to change the background color to white in my android app in the simplest way possible
A- You need to use the android:background property , eg
android:background="@color/white"
Also you need to you need to add a value for white in the strings.xml
<color name="white">#FFFFFF</color>
A2- You can also use
android:background="#ffffff"
in your xml layout, or you can change the theme in your AndroidManifest.xml by adding
android:theme="@android:style/Theme.Light"
to your activity tag.
If you want to change the background dynamically, use
YourView.setBackgroundColor(Color.argb(255, 255, 255, 255))
hope this helps
agent008my said:
i did some searching for you and found this. such code language is greek to me as im not too good with coding jargon. hope it helps you:
Q- I want to be able to change the background color to white in my android app in the simplest way possible
A- You need to use the android:background property , eg
android:background="@color/white"
Also you need to you need to add a value for white in the strings.xml
<color name="white">#FFFFFF</color>
A2- You can also use
android:background="#ffffff"
in your xml layout, or you can change the theme in your AndroidManifest.xml by adding
android:theme="@android:style/Theme.Light"
to your activity tag.
If you want to change the background dynamically, use
YourView.setBackgroundColor(Color.argb(255, 255, 255, 255))
hope this helps
Click to expand...
Click to collapse
it do help a lot , I found a xml "\res\values\drawable.xml",
some value of it may have an effect on the background color.
<item type="drawable" name="white_background">#ffffffff</item>
Click to expand...
Click to collapse
but I'm in trouble now because of the apktool.
It seems that this APK can't be recompiled individually, I gonna solve it as soon as possible.
Thx for ur help!
make sure ya post your solution!
kynuspro said:
it do help a lot , I found a xml "\res\values\drawable.xml",
some value of it may have an effect on the background color.
but I'm in trouble now because of the apktool.
It seems that this APK can't be recompiled individually, I gonna solve it as soon as possible.
Thx for ur help!
Click to expand...
Click to collapse
ur most welcome. please post ur solution, and if ur method works, please relist this thread as solved...thanks
agent008my said:
ur most welcome. please post ur solution, and if ur method works, please relist this thread as solved...thanks
Click to expand...
Click to collapse
oh..there isn't any good news now at this moment.
on the one hand, I can't decompile the "conversation.apk" individually,
(the error just like : "Could not decode attr value, using undecoded value instead")
on the other hand, the "framework-res.apk"&"blur-res.apk" can be decompiled correctly, but I edit some xml about colors, and my device can't boot with the replacement.
I have to recovery it now..and waiting for help!!
kynuspro said:
oh..there isn't any good news now at this moment.
on the one hand, I can't decompile the "conversation.apk" individually,
(the error just like : "Could not decode attr value, using undecoded value instead")
on the other hand, the "framework-res.apk"&"blur-res.apk" can be decompiled correctly, but I edit some xml about colors, and my device can't boot with the replacement.
I have to recovery it now..and waiting for help!!
Click to expand...
Click to collapse
check through the threads on this forum and see if anybody has posted a similar question as yours and if they have a solution. my bet is somebody has.
http://forum.xda-developers.com/forumdisplay.php?f=565
EDIT: after looking around a bit, most people on other forums recommend for you just to use handcent. apparently its the simplest fix without you having to tweak around much a lot. they just recommend for you to disable the stock message notification so that you wont get 2 notifications on your notification bar. perhaps you'd wanna give it another go? besides, apparently handcent supports upto 5mb of storage as opposed to the standard 2mb on the stock messaging app
Someone attach the apk please.
Sent from my A953 using Tapatalk
santiemanuel said:
Someone attach the apk please.
Sent from my A953 using Tapatalk
Click to expand...
Click to collapse
check this thread. is this the APK you're on about? if it is i will upload it first thing in the morning
http://forum.xda-developers.com/showthread.php?t=882997
yes, but it doesnt work. signature mismatch.
Sent from my A953 using Tapatalk
santiemanuel said:
yes, but it doesnt work. signature mismatch.
Sent from my A953 using Tapatalk
Click to expand...
Click to collapse
i managed to find the following apk's, and decompiled versions for conversations. however they are for the Koraean Stock Rom for Motorola Defy.
hope this helps
EDIT: link to the thread in which I found this:
http://forum.xda-developers.com/showthread.php?t=1019327
Thanks! i will read the decompiled until i get to my pc and find my conversation.apk backup
Sent from my A953 using Tapatalk
You're most welcome
Sent from my MotoA953 using XDA App
agent008my said:
i managed to find the following apk's, and decompiled versions for conversations. however they are for the Koraean Stock Rom for Motorola Defy.
hope this helps
EDIT: link to the thread in which I found this:
http://forum.xda-developers.com/showthread.php?t=1019327
Click to expand...
Click to collapse
I got why I can't decompile Conversations.apk..
This man said in his thread:
"
I am trying to decompile Conversations.APK from /system/app with APKTool
I am using framework-res.apk, blur-res.apk and moto-res.apk as the framework.
It was successfuly decompiled.
"
I knew this before, but I don't know how to use them as the framework..
maybe I gonna ask him for details...to decompile my conversations
agent008my said:
ur most welcome. please post ur solution, and if ur method works, please relist this thread as solved...thanks
Click to expand...
Click to collapse
LATEST:
I decompilied conversation.apk successfully,
the code in "\res\values\drawables.xml" is:
Code:
<item type="drawable" name="white_background">#ffffffff</item>
I changed #ffffffff to #00000000 and saved it .
But it doesn't work...nothing happened with my TextMessaging!
I think I should have a try on framework-res.apk or blur-res.apk.
Black is #ff000000
Sent from my A953 using Tapatalk
santiemanuel said:
Black is #ff000000
Sent from my A953 using Tapatalk
Click to expand...
Click to collapse
Thx, but it's still....It didn't work and nothing were changed after I edit the xml.
I gonna check the "blur-res.apk" later..
There is many .PNG about text messaging init.
Done
Bump, MOD Done.
The file to edit was compose_message_activity change white with black
Well, I guess it is what you wanted, I forgot how the stock mms looked like. Test.
I Want To Remove Some Of This Parts From My Settings.apk
Touchwiz parts inside which there are Adaway.apk
Cpucontrol.apk
Spareparts.apk
netbooster.apk
etc etc..For Which I Have To Install Those Apps
Have A Glance At My Attachment...You Will Surely Understnd
Himan Boro said:
I Want To Remove Some Of This Parts From My Settings.apk
Touchwiz parts inside which there are Adaway.apk
Cpucontrol.apk
Spareparts.apk
netbooster.apk
etc etc..For Which I Have To Install Those Apps
Have A Glance At My Attachment...You Will Surely Understnd
Click to expand...
Click to collapse
Try To Mod Your Settings.apk..By Decompiling It.There Is Many Guides In XDA To Do That....And Then Just Delete The Apks That You Want To Remove....With Any Root Explorer App...:thumbup:
[[Note:Search "How To Invoke An App From Settings" In Xda Or Google To Do That]]
TECHNO_THUNDER said:
Try To Mod Your Settings.apk..By Decompiling It.There Is Many Guides In XDA To Do That....And Then Just Delete The Apks That You Want To Remove....With Any Root Explorer App...:thumbup:
[[Note:Search "How To Invoke An App From Settings" In Xda Or Google To Do That]]
Click to expand...
Click to collapse
TY For D link...But I just wan2 remov tht Invokd app from my settings.apk...i.dont want to view that apps name/icons inside my settings.apk..
Himan Boro said:
TY For D link...But I just wan2 remov tht Invokd app from my settings.apk...i.dont want to view that apps name/icons inside my settings.apk..
Click to expand...
Click to collapse
remove it from the manifest xml and also remove any strings in strings xml then resign it
Open settings.xml under res/xml/here
Then find the preferencescreens and delete them.
And your problem will be solved.
Sent from my GT-S5360 using Tapatalk 2
san122 said:
Open settings.xml under res/xml/here
Then find the preferencescreens and delete them.
And your problem will be solved.
Sent from my GT-S5360 using Tapatalk
Recompiling Gives Error..but the app is in dist foldr...
Click to expand...
Click to collapse
marcussmith2626 said:
remove it from the manifest xml and also remove any strings in strings xml then resign it
Click to expand...
Click to collapse
lil confusing 1
Himan Boro said:
lil confusing 1
Click to expand...
Click to collapse
you can locate some things in the androidmanifest.xml or as san said in settings.xml
depends where its locoted - just follow the path
marcussmith2626 said:
you can locate some things in the androidmanifest.xml or as san said in settings.xml
depends where its locoted - just follow the path
Click to expand...
Click to collapse
i dint find in Androidmanifest.xml..
i found in settings.xml
san122 said:
Open settings.xml under res/xml/here
Then find the preferencescreens and delete them.
And your problem will be solved.
Sent from my GT-S5360 using Tapatalk 2
Click to expand...
Click to collapse
Recompiling gives error ;(..but the new compild app is in dist folder.
Himan Boro said:
Recompiling gives error ;(..but the new compild app is in dist folder.
Click to expand...
Click to collapse
read the error that apk tool tells you - it will say in which file and what line the error is - you may have public values or strings that also need deleting - cant help if you just say its an error
Himan Boro said:
TY For D link...But I just wan2 remov tht Invokd app from my settings.apk...i.dont want to view that apps name/icons inside my settings.apk..
Click to expand...
Click to collapse
Just Do Reverse The Whole Process Bro....Delete The Layout Lines And The Apps....
marcussmith2626 said:
read the error that apk tool tells you - it will say in which file and what line the error is - you may have public values or strings that also need deleting - cant help if you just say its an error
Click to expand...
Click to collapse
Ok Bro....
TECHNO_THUNDER said:
Just Do Reverse The Whole Process Bro....Delete The Layout Lines And The Apps....
Click to expand...
Click to collapse
Ow K...
Himan Boro said:
Ow K...
Click to expand...
Click to collapse
Maybe you are getting language not found error.If yes then there is no problem.
Sent from my GT-S5360 using Tapatalk 2
TY all for d supports and guides
marcussmith2626 said:
you can locate some things in the androidmanifest.xml or as san said in settings.xml
depends where its locoted - just follow the path
Click to expand...
Click to collapse
@marcussmith2626
It is not located in manifest. (It will never will be located there)
It is in /res/xml/settings.xml
Himan Boro said:
Recompiling gives error ;(..but the new compild app is in dist folder.
Click to expand...
Click to collapse
You need to install framework-res.apk and twframework-res.apk before decompiling and before recompiling.
Himan Boro said:
TY all for d supports and guides
Click to expand...
Click to collapse
I think you want to remove them from xduos v3 rom(as per screenshoots)....So decompile Settings.apk and go to res/xml,and find "kenj1.xml" from there, edit them and delete preferences from there...and recompile,sign and push apk to system....enjoy for personal use only...:thumbup::thumbup:
Whats The Name Of Png File,For The Area Below Notification Title
I Meant The Area In Which Notifications Are Displayed,Whats The Name Of that png file ..
Himan Boro said:
Whats The Name Of Png File,For The Area Below Notification Title
I Meant The Area In Which Notifications Are Displayed,Whats The Name Of that png file ..
Click to expand...
Click to collapse
It is called "status_bar_background.9.png"
or "statusbar_background.9.png"
There are both files, but
I don't exactly remember name because I am using mobile now, not my PC.
Sent from my GT-I9001 Gadget of Mass Destruction running CM11 with XDA Developers App.
Himan Boro said:
Whats The Name Of Png File,For The Area Below Notification Title
I Meant The Area In Which Notifications Are Displayed,Whats The Name Of that png file ..
Click to expand...
Click to collapse
It may differ from rom to rom.sometimes its drawable or maybe hex code.
You can find it in statusbar_tracking.xml in lahput folder.
san122 said:
It may differ from rom to rom.sometimes its drawable or maybe hex code.
You can find it in statusbar_tracking.xml in lahput folder.
Click to expand...
Click to collapse
ok.. thnx bro
Himan Boro said:
ok.. thnx bro
Click to expand...
Click to collapse
Dont say just press it.
can someone tells me guide to edits framework of galaxy y? (I means to add theme, etc) Thanks
GalKill said:
can someone tells me guide to edits framework of galaxy y? (I means to add theme, etc) Thanks
Click to expand...
Click to collapse
Sorry this question is too general
First you need to decide what exactly it is you want to do
Next type into google what it is you want to do and add xda on the end (you can add galaxy y on the end too if you want to search galaxy y threads) - eg how to add brightness slider xda galaxy y
marcussmith2626 said:
Sorry this question is too general
First you need to decide what exactly it is you want to do
Next type into google what it is you want to do and add xda on the end (you can add galaxy y on the end too if you want to search galaxy y threads) - eg how to add brightness slider xda galaxy y
Click to expand...
Click to collapse
Sorry sir :'( But how to change height name banner and change the icons?
GalKill said:
Sorry sir :'( But how to change height name banner and change the icons?
Click to expand...
Click to collapse
hight will be in xml file and png will be in res folder
cant tell you which xml or what the name of the png is you will have to decompile the apk you want to mod and look through it
marcussmith2626 said:
hight will be in xml file and png will be in res folder
cant tell you which xml or what the name of the png is you will have to decompile the apk you want to mod and look through it
Click to expand...
Click to collapse
Sir,Please help me also?
marcussmith2626 said:
hight will be in xml file and png will be in res folder
cant tell you which xml or what the name of the png is you will have to decompile the apk you want to mod and look through it
Click to expand...
Click to collapse
Can u give me the specific directory of the folder,please?
GalKill said:
Can u give me the specific directory of the folder,please?
Click to expand...
Click to collapse
I cant because I dont have the apk nor can I really help you - you will just have to look through the xml untill you come across the line for thing you wish to change the height of
Same for the png - look through the res folder untill you see the png you wish to change
marcussmith2626 said:
I cant because I dont have the apk nor can I really help you - you will just have to look through the xml untill you come across the line for thing you wish to change the height of
Same for the png - look through the res folder untill you see the png you wish to change
Click to expand...
Click to collapse
But it's appear on all apps; I think the problem is on the framework-res.apk. It's miniROM touchwiz nature UX
GalKill said:
But it's appear on all apps; I think the problem is on the framework-res.apk. It's miniROM touchwiz nature UX
Click to expand...
Click to collapse
then look in the framework - probably in styles.xml
you can try <item name="listPreferredItemHeight">64.0dip</item>
I presume thats the gap between items in a list/the height of each item
marcussmith2626 said:
then look in the framework - probably in styles.xml
you can try <item name="listPreferredItemHeight">64.0dip</item>
I presume thats the gap between items in a list
Click to expand...
Click to collapse
How about to make it into stock-like ? (No icon, just a banner with the app name )
GalKill said:
How about to make it into stock-like ? (No icon, just a banner with the app name )
Click to expand...
Click to collapse
most likely will require smali change as the smali will probably refer to a public value for the png or it could be a case of it just being refered as a drawable value in a drawable/layout xml - again you will have to look
without knowledge or understanding of what you are looking at it will be very hard for you to do - sorry