New: XDA launches forum for app developers. Discuss coding, tools, marketing, and more.
XDA Developers Android and Mobile Development Forum
Forgot your password?
 
Post Reply+
Tip us?
 
DreamScar
Old
#1  
DreamScar's Avatar
Senior Member - OP
Thanks Meter 8
Posts: 146
Join Date: Feb 2010
Default help with theming

Hey fellas

I'm currently working on trying to replace the default android orange buttons, highlights, etc with the green HTC versions but I'm having trouble with a few files. I can't seem to figure out where the progress bar is located. I replaced the one within the framework-res folder but things like the market place and other apps still come up orange. Are these progress bars perhaps app specific instead of utilizing the one in the framework-res folder or is there another location that contains the progress bar and the highlights that come up when scrolling?

Any help would be appreciated as I'm not all that knowledgeable on android's ui structure.
flybyme Old
#2  
Guest
Thanks Meter
Posts: n/a
Quote:
Originally Posted by DreamScar View Post
Hey fellas

I'm currently working on trying to replace the default android orange buttons, highlights, etc with the green HTC versions but I'm having trouble with a few files. I can't seem to figure out where the progress bar is located. I replaced the one within the framework-res folder but things like the market place and other apps still come up orange. Are these progress bars perhaps app specific instead of utilizing the one in the framework-res folder or is there another location that contains the progress bar and the highlights that come up when scrolling?

Any help would be appreciated as I'm not all that knowledgeable on android's ui structure.

volume color is controled by the progress_horizontal.xml in the framework-res/drawable folder. there are 9 instances where I find the 08 00 00 1C hex string. The volume bar is divided into 3 sesctions from top to bottom. you need to change them to hex colors


also for market downloads
DownloadProvider.apk/res/layout/status_bar_ongoing_event_progress_bar.xml


You will need to learn how to do hex edits
 
DreamScar
Old
#3  
DreamScar's Avatar
Senior Member - OP
Thanks Meter 8
Posts: 146
Join Date: Feb 2010
That seems far more complicated than it needs to be.