Hi
sorry for my bad english
There are so much blue or green themes but i didnt find a red one.
Could somebody please make one, i´m honestly too stupid to create my own theme
Yeah, it's true!i think the same thing few day ago...but i don't know if someone consider your request, coz it's so hard and boring modify the framework and change every single file... btw i hope too someone release red theme.
Sent from my GT-I9000 using Tapatalk
I need a pink one...
Sent from my GT-I9000 using XDA App
Now there's an idea for an app - a theme modifier that lets you select pngs from an update.zip and adjust hue/saturation slider to change the colour. I'm too busy to work on such a thing at the moment but could give it a go in a couple of months time if nobody else does!
it would be a good idea but then again people would ask for more like to have modified icons changing colours and all sorts
but at the end there would be one very very good piece of software
Hue/Saturation change won't do the trick it would need to be a really good filter .. cause it should only replace a certain scope of rgb to another one and leave all the rest untouched .. otherwise all white, greys and stuff will be also affected by the hue/saturation modification .. I've started to modify the r64 white theme to red colours, but I'm stuck on .9.png's and dunno how to change them in a proper way .. I'm thinking on changing the VA Green to Red one also
You can make it your self.
I´m changing every Theme that im using.
With Paint.Net you can change the Colors.
here is a link where you can find red, black, blue, emerald themed markets (v2.2.11) ENJOY (btw, im using the black one...awesome)
http://forum.xda-developers.com/showthread.php?t=877510
No one makes red themes cuz red is to hard to read ...
Sent from my GT-I9000 using XDA App
Ill give it a shot, but dont expect too much since this would be the first theme im not making for my self
Sent from my GT-I9000 using Tapatalk
remenis said:
No one makes red themes cuz red is to hard to read ...
Sent from my GT-I9000 using XDA App
Click to expand...
Click to collapse
I have tried a few red tests and can confirm this. The samoled screen uses an RGBG layout, so in my experience red rext and gfx look fuzzy compared to green since the pixels are twice the size. Vibrant, yes, but fuzzy/blocky.
Jumba said:
I have tried a few red tests and can confirm this. The samoled screen uses an RGBG layout, so in my experience red rext and gfx look fuzzy compared to green since the pixels are twice the size. Vibrant, yes, but fuzzy/blocky.
Click to expand...
Click to collapse
Please ...
Jumba can you help me for the progress bar (I want them in red) but I don't know how to do that
antonda said:
Please ...
Jumba can you help me for the progress bar (I want them in red) but I don't know how to do that
Click to expand...
Click to collapse
Hey that looks pretty cool. The progress bar is controlled by progress_horizontal.xml in /res/drawable of your framework-res.apk.
The first three colours are for the background and the next 6 are for the progress bar colour. (they're arranged top colour first, bottom colour second, middle colour third). Colours 4 and 7 are the same, as are 5 and 8, and 6 and 9. The only difference is in the transparency values. Here's the code from my theme...
Code:
<?xml version="1.0" encoding="UTF-8"?>
<layer-list
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@id/background">
<shape>
<corners android:radius="4.659973dip" />
<gradient android:startColor="#ff131313" android:endColor="#ff181818" android:angle="270.0" android:centerColor="#ff252525" />
</shape>
</item>
<item android:id="@id/secondaryProgress">
<clip>
<shape>
<corners android:radius="4.659973dip" />
<gradient android:startColor="#50447b22" android:endColor="#8041612b" android:angle="270.0" android:centerColor="#8088c13d" />
</shape>
</clip>
</item>
<item android:id="@id/progress">
<clip>
<shape>
<corners android:radius="4.659973dip" />
<gradient android:startColor="#ff447b22" android:endColor="#ff41612b" android:angle="270.0" android:centerColor="#ff88c13d" />
</shape>
</clip>
</item>
</layer-list>
Hope that helps.
Jumba said:
Hey that looks pretty cool. The progress bar is controlled by progress_horizontal.xml in /res/drawable of your framework-res.apk.
The first three colours are for the background and the next 6 are for the progress bar colour. (they're arranged top colour first, bottom colour second, middle colour third). Colours 4 and 7 are the same, as are 5 and 8, and 6 and 9. The only difference is in the transparency values. Here's the code from my theme...
Hope that helps.
Click to expand...
Click to collapse
thanks bro
i have made a rom called RedShock
with a red theme but i am working on the update script
i will release it soon
Check the Generation X thread. Red them coming soon!
Sent from my GT-I9000 using XDA App
Out now
Sent from my GT-I9000 using XDA App
Another theme made not red sry it's orange now
Sent with tapatalk
Generation X v2.0 is out in blue, red, green, yellow, orange, purple and pink!!
Check it out!!
Sent from my GT-I9000 using XDA App
Related
If you ever get bored with the black background in Android, now you can change it by making a few small edits to framework-res.apk/res/values/styles.xml
This will affect MOST of the black background you see in Android (e.g. settings, contacts, mms, installer etc.) with the exception of certain apps that use their on backgrounds (e.g. contacts logs, email etc.).
Difficulty level: Medium
1. Decompile framework-res.apk
2. Navigate to res/values and open styles.xml
3. Locate <style name="Theme">
4. Replace
<item name="colorBackground">@color/background_dark</item>
with
<item name="colorBackground">@color/transparent</item>
5. Replace
<item name="windowBackground">@drawable/screen_background_dark</item>
with
<item name="windowBackground">@drawable/mybackground</item>
6. Locate <style name="Theme.Black" parent="@style/Theme">
7. Replace
<item name="colorBackground">@color/black</item>
with
<item name="colorBackground">@color/transparent</item>
8. Replace
<item name="windowBackground">@color/black</item>
with
<item name="windowBackground">@drawable/mybackground</item>
9. Create a 480x800 png to your liking, name it mybackground.png and place it in drawable-hdpi folder
9. Recompile framework-res.apk
DONE!
Always create a backup before making any modifications!!!
Great job. I wished i had the confidence to do this lol. bu thank you for the info
smccall said:
Great job. I wished i had the confidence to do this lol. bu thank you for the info
Click to expand...
Click to collapse
I think it's more intimidating for most people than anything else.
AvatarOfFrost said:
I think it's more intimidating for most people than anything else.
Click to expand...
Click to collapse
Any way you can make a video or maybe qbking77 could im more of a visual learner. i would love to learn how Do do this
smccall said:
Great job. I wished i had the confidence to do this lol. bu thank you for the info
Click to expand...
Click to collapse
Its really not that hard.... Its time consuming in the beginning with trial and error and nandroid recoveres. But its worth it in the end and the selfsatisfaction feels great. "yes, I figured it out" or "I really can do this". Try and see.
As longa you doa back up you really can't screw it up.
Sent from my SPH-D710 using xda premium
spdwiz18 said:
Its really not that hard.... Its time consuming in the beginning with trial and error and nandroid recoveres. But its worth it in the end and the selfsatisfaction feels great. "yes, I figured it out" or "I really can do this". Try and see.
As longa you doa back up you really can't screw it up.
Sent from my SPH-D710 using xda premium
Click to expand...
Click to collapse
I will give it a whirl.
Mind posting screenies? I'll try if I like what it turns into.
Sent from my Senseless Doubleshot using xda premium
Updated OP with screenshots.
You might wanna enlarge the ppics too see better as my background is more subtle. I am using the Ice Cream Sandwich texture.
I'd like to know how to successfully make the font color white in the bubbles of mms and change all of the white background images to black and invert it's color so it's white font on black background. The white background with black font is ugly.
And this is definitely nice! I'll give this a shot, too!
Overstew said:
I'd like to know how to successfully make the font color white in the bubbles of mms and change all of the white background images to black and invert it's color so it's white font on black background. The white background with black font is ugly.
And this is definitely nice! I'll give this a shot, too!
Click to expand...
Click to collapse
There is no white background in mms.
AvatarOfFrost said:
There is no white background in mms.
Click to expand...
Click to collapse
Oops. I meant black font in mms. I was wanting to make the bubble backgrounds black and make the font white.
Great guide. Thanks for taking the time to do this.
Tiffany84 said:
Great guide. Thanks for taking the time to do this.
Click to expand...
Click to collapse
Speaking of guides, Tiffany how does one change the tab colors at the top of the phone and contacts apk.? I've tried swapping out nearly every PNG I can think of in the framework res.apk, system ui, phone, and contacts apps and still can't get my phone off the stock Samsung blue. Thanks.
fnut6969 said:
Speaking of guides, Tiffany how does one change the tab colors at the top of the phone and contacts apk.? I've tried swapping out nearly every PNG I can think of in the framework res.apk, system ui, phone, and contacts apps and still can't get my phone off the stock Samsung blue. Thanks.
Click to expand...
Click to collapse
I've never even looked. My theme is blue so I've always kept it. I'll look and get back to you if someone doesn't give you your answer before hand.
The tabs are located in twframework-res.apk. They are called tw_tab_focused.png and so on.
Thank you, that probably explains why nothing happens when I switch out the PNG's in system UI.
AvatarOfFrost said:
The tabs are located in twframework-res.apk. They are called tw_tab_focused.png and so on.
Click to expand...
Click to collapse
Your information was spot on got most everything swapped out, thanks again.
If I could borrow your expertise again would you know where the files are located in the attached photo. They mostly show up in contacts even though I swapped out the dialer and contacts apps from Crysis21's SensatioN ROM?
fnut6969 said:
Your information was spot on got most everything swapped out, thanks again.
If I could borrow your expertise again would you know where the files are located in the attached photo. They mostly show up in contacts even though I swapped out the dialer and contacts apps from Crysis21's SensatioN ROM?
Click to expand...
Click to collapse
framework-res
Sent from my SPH-D710 using XDA App
PhantomHacker said:
framework-res
Sent from my SPH-D710 using XDA App
Click to expand...
Click to collapse
Thank you, I must be overlooking something I'll just go through it more carefully.
For the life of me I can't get the Framework to recompile successfully. Even if I don't make any changes. I used this guide. Is there a better way to do it?
Hello!
I have a problem with this. I tried some modyficationc for example from x10 and nothing. When i replace SystemUI.apk and reboot i can't see status bar.
Can you help me? Any ideas to solve this problem?
Wrong thread
And flash a notification mod for your phone firmware .62 .42 from themes and apps
Sent from my MT15i using xda premium
Sorry.
I saw this topic but this mod is for CM7. I need mod for stock rom.
Michal1994 said:
Sorry.
I saw this topic but this mod is for CM7. I need mod for stock rom.
Click to expand...
Click to collapse
Can't mod stock rom with centre clock on status bar
Sent from my LT15/18i-Dimiui using xda premium
yes you can,cause its only playing with statusbar.xml,im still trying to modify it,but still no luck
Sorry chiefy, had to prove you wrong buddy, no offence meant!
Sent from my MT15i using xda premium
if some of you have successful apply it can you share your systemui.apk,im really give up on this mod,i dont know whats wrong,i follow all the instructions but still cant get it works on cm7
from the ARC
I will PM you it later, little busy atm
Sent from my MT15i using xda premium
can you please make one with larger clock? something thats almost the same size as the icons?
Hmmm I doubt it, it would involve changing tge whole status bar...
Sent from my MT15i using xda premium
waynekirby said:
Hmmm I doubt it, it would involve changing tge whole status bar...
Click to expand...
Click to collapse
absolutely no,just a simple edit it xml will do,but you should know how to decompile and rebuild without error
from the ARC
rashid.fairus said:
absolutely no,just a simple edit it xml will do
from the ARC
Click to expand...
Click to collapse
We have this in our roms thanks we meaning wayne know how this is done its easy and no it would look crap with a bigger clock so wayne is right it would not work and as for our status bar you can't just use it in any rom it has dependants
" ,but you should know how to decompile and rebuild without error" lol
Sent from my MT15i using Tapatalk
changing the size is easy guys just add a text size to the xml.
if that dont work then it is set in the smali and that is easy to override aswell.
also for ****z n giggle i did a quick search
fount this
http://forum.xda-developers.com/showthread.php?t=1227869
this has what you have to do to center the clock (in the x10 section)
also (as per team rom) if you are using a custom front i found that you need to change the size of the clock ( so i made it variable ) for an idea of what we you can welcome to check out our files
@kormatoes every one likes different sizes, i like a tiny weeny clock, my GF likes to to take up 90% of her screen (shes a bit blind) and personal preference is everything
to change the size of it in xml this is whaqt to change (stole the snipit of code from another thread but it does the trick)
Code:
<com.android.systemui.statusbar.Clock android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:gravity="center" android:paddingLeft="132.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
Add this to it
Code:
android:textSize="[B][COLOR="Red"]18dip[/COLOR][/B]"
change the red part to suit your needs
so in the end it now looks like this
Code:
<com.android.systemui.statusbar.Clock [B]android:textSize="[B][COLOR="Red"]18dip[/COLOR][/B]"[/B] android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:gravity="center" android:paddingLeft="132.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
Basically you have over ridden the style size from the framework so there will be no funny business s any where else
**EDIT** - also bare in mind this size stuff WILL NOT work on the TEAM roms as ours is set from our tweaks menu.
Pvy.
pvyParts said:
changing the size is easy guys just add a text size to the xml.
if that dont work then it is set in the smali and that is easy to override aswell.
also for ****z n giggle i did a quick search
fount this
http://forum.xda-developers.com/showthread.php?t=1227869
this has what you have to do to center the clock (in the x10 section)
also (as per team rom) if you are using a custom front i found that you need to change the size of the clock ( so i made it variable ) for an idea of what we you can welcome to check out our files
@kormatoes every one likes different sizes, i like a tiny weeny clock, my GF likes to to take up 90% of her screen (shes a bit blind) and personal preference is everything
to change the size of it in xml this is whaqt to change (stole the snipit of code from another thread but it does the trick)
Code:
Add this to it
Code:
android:textSize="[B][COLOR="Red"]18dip[/COLOR][/B]"
change the red part to suit your needs
so in the end it now looks like this
Code:
Basically you have over ridden the style size from the framework so there will be no funny business s any where else
**EDIT** - also bare in mind this size stuff WILL NOT work on the TEAM roms as ours is set from our tweaks menu.
Pvy.
Click to expand...
Click to collapse
Your crule I don't condone picking on you partner in any way or form lol
( I'm adding whether into my ics )
But for center clock with out decompile / reconpile
Find a center clock for gingerbread get se tweaked
Ics one is floating round
Open
Take
Get statusbarxml
And
(status bar expanded XML) and replace them in your systemui Res layouts
(Quick way))))))
Back up ya stuff first
Sent from my MT15i using Tapatalk
Trying to theme my status bar dropdown, and it's driving me insane.
I replaced the quicksettings and clear notifications icons, but when pressing them they get a green overlay.
Right now I'm trying to find out where this is controlled. Must be one of the .xmls or in smali, but so far I had no luck finding anything.
Anyone else know where to look?
KamikaZeeFu said:
Trying to theme my status bar dropdown, and it's driving me insane.
I replaced the quicksettings and clear notifications icons, but when pressing them they get a green overlay.
Right now I'm trying to find out where this is controlled. Must be one of the .xmls or in smali, but so far I had no luck finding anything.
Anyone else know where to look?
Click to expand...
Click to collapse
I'm facing the same dillema. I bet it's in smali somewhere... if we're lucky it calls the RGB value from an XML we can change somewhere.
NRGZ28 said:
I'm facing the same dillema. I bet it's in smali somewhere... if we're lucky it calls the RGB value from an XML we can change somewhere.
Click to expand...
Click to collapse
I checked most of the xmls in systemui and had no luck finding anything. If it calls an xml, then it most likely sits in com.htc.resources.apk which would suck :/
Sent from my HTC One X using xda premium
KamikaZeeFu said:
Trying to theme my status bar dropdown, and it's driving me insane.
I replaced the quicksettings and clear notifications icons, but when pressing them they get a green overlay.
Right now I'm trying to find out where this is controlled. Must be one of the .xmls or in smali, but so far I had no luck finding anything.
Anyone else know where to look?
Click to expand...
Click to collapse
It's skinned blue in our Rom so its not in resources. I'm pretty sure it's in framework-res.apk values/colors.xml. holo_green_light & holo_green_dark
But to be sure I'll ask our lead dev sergio tomorrow.
rayford85 said:
It's skinned blue in our Rom so its not in resources. I'm pretty sure it's in framework-res.apk values/colors.xml. holo_green_light & holo_green_dark
But to be sure I'll ask our lead dev sergio tomorrow.
Click to expand...
Click to collapse
Thanks I'll give it a try
Sent from my HTC One X using xda premium
since it will be changed if one applies a HTC Sense theme, and the Matte theme for instance has a blue on pressed color i did a quick apktool d Matte.apk
i found no graphics file inside but i found this inside /res/values/colors.xml
Code:
<color name="overlay_color">#ff0087b4</color>
endursa said:
since it will be changed if one applies a HTC Sense theme, and the Matte theme for instance has a blue on pressed color i did a quick apktool d Matte.apk
i found no graphics file inside but i found this inside /res/values/colors.xml
Code:
<color name="overlay_color">#ff0087b4</color>
Click to expand...
Click to collapse
Yeah it doesn't do what we want it to do though
I found it's easier to just put all your changes in a skin that's already got blue highlights, such as aluminum or matte. Now if I could only get rid of the black clock in the Matte theme I'd be golden!
endursa said:
since it will be changed if one applies a HTC Sense theme, and the Matte theme for instance has a blue on pressed color i did a quick apktool d Matte.apk
i found no graphics file inside but i found this inside /res/values/colors.xml
Code:
<color name="overlay_color">#ff0087b4</color>
Click to expand...
Click to collapse
Nice catch, too bad that the default skin is com.htc.resources.apk, which can't really be edited atm until apktool is updated.
Edit: with your hint I think it's "<color name="multiply_color">#ff00beff</color>" under values/colors.xml. for stock HTC theme, I think it's in SystemUI.apk, trying it out now.
Edit2: yup, that's the value that colors the icon on press . Editing SystemUI.apk is enough. Bear in mind that the color gets overlaid as a multiply layer (think Photoshop)
Yeah that makes sense with the multiply overlay
It was late yesterday when i posted my findings :-D
- One X -
Hey guys. Here's an Elegant White Theme for the new Sprint ND8 update. I thought I'd share it here since there were some folks who liked it back on MK3. There are a few minor little things that are still wip, since Samsung changed some things around in the ND8 framework. All icons are from stock TW but I'm working on another zip which will include icons from the WPX MK3 roms. Thanks to @bilgerryan, @dazednconfused and the rest of TeamWicked for allowing me to use them. I hope you all enjoy.
Included Apk's
framework
twframework
SecSettings
SecMms
SecContacts_OSup
SecPhone
SecNoteMyFiles
SecLauncher2
MusicPlayerWT
SecGallery2013 - wip
ClockPackage_OSup
MusicCommonUtility
SecBrowser_SPR
SecDownloadProviderUi_2
JobManager
SecCalendar_NAmerica
SamsungIME
SamsungCamera
Make sure to back up your existing rom. Download zip and place in either internal or external sdcard. Boot into recovery, wipe cache and dalvik cache and install zip.
Download link:
6/4 V2: http://www.androidfilehost.com/?fid=23501681358542721 5/29 V1: http://www.androidfilehost.com/?fid=23501681358540121
5/31 Updated SecSettings - Now included in V2
Fixes wifi connection dialog text
Push to system/priv-app, change permissions to rw-r-r and reboot
http://www.androidfilehost.com/?fid=23501681358540473
Changelog:
V1
Initial release
V2
Corrected some menu dropdown panels, menu hardkey panels and texts which affect 3rd party apps.
Corrected texts affected when installing certain Wanam mods
Includes S5 Mms
Reserved for screenshots
Great job.I was waiting for this
mholloway said:
Great job.I was waiting for this
Click to expand...
Click to collapse
Thanks man. It's been a little frustrating trying to get this one to look just like the MK3 release. Samsung changed a few things around in framework. I haven't been able to figure out one text in particular because it definitely affects the text in some 3rd party apps. As always, thanks for supporting the theme!
nyfl2004 said:
Thanks man. It's been a little frustrating trying to get this one to look just like the MK3 release. Samsung changed a few things around in framework. I haven't been able to figure out one text in particular because it definitely affects the text in some 3rd party apps. As always, thanks for supporting the theme!
Click to expand...
Click to collapse
Can you tell me where and what file changes the settings background.
edit -reason I am asking I have a white carbon fiber pic .maybe can be used instead of just white.?
mholloway said:
Can you tell me where and what file changes the settings background.
edit -reason I am asking I have a white carbon fiber pic .maybe can be used instead of just white.?
Click to expand...
Click to collapse
No problem. Go into framework-res/drawable and look for the following 2 xml's: tw_screen_background_selector_dark and tw_screen_background_selector_light. You can also control them in framework-res//res/values/styles.xml.
Edit: Those 2 xml's will actually direct you to "tw_background_holo_dark" and "tw_background_holo_light". Since you want to use a png image, you're going to have to add your png to the drawable folder and then edit the following xml lines:
framework-res/drawable/tw_background_holo_dark/
xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ff000000" /> change this this line to the name of your png. Example: "@drawable/framework_background"
framework-res/drawable/tw_background_holo_light/
xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ffffffff" /> change this line to the name of your png
Example: "@drawable/framework_background"
nyfl2004 said:
No problem. Go into framework-res/drawable and look for the following 2 xml's: tw_screen_background_selector_dark and tw_screen_background_selector_light. You can also control them in framework-res//res/values/styles.xml.
Edit: Those 2 xml's will actually direct you to "tw_background_holo_dark" and "tw_background_holo_light". Since you want to use a png image, you're going to have to add your png to the drawable folder and then edit the following xml lines:
framework-res/drawable/tw_background_holo_dark/
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/screen_background_dark" android:state_accelerated="false" />
<item android:drawable="@drawable/tw_background_holo_dark" /> change this line to the name of your png
framework-res/drawable/tw_background_holo_light/
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/screen_background_light" android:state_accelerated="false" />
<item android:drawable="@drawable/tw_background_holo_light" /> change this line to the name of your png
</selector>
Click to expand...
Click to collapse
Man... thanks.
mholloway said:
Can you tell me where and what file changes the settings background.
edit -reason I am asking I have a white carbon fiber pic .maybe can be used instead of just white.?
Click to expand...
Click to collapse
Wow, what a mess I made of that. It should be correct now. Sorry for all the changes..
Edit: This is what it should look like..
framework-res/drawable/tw_background_holo_dark/
xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ff000000" /> change this this line to the name of your png. Example: "@drawable/framework_background"
framework-res/drawable/tw_background_holo_light/
xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ffffffff" /> change this line to the name of your png
Example: "@drawable/framework_background"
nyfl2004 said:
Wow, what a mess I made of that. It should be correct now. Sorry for all the changes..
Edit: This is what it should look like..
framework-res/drawable/tw_background_holo_dark/
xmlns:android="http://schemas.android.com/apk/res/android">
change this this line to the name of your png. Example: "@drawable/framework_background"
framework-res/drawable/tw_background_holo_light/
xmlns:android="http://schemas.android.com/apk/res/android">
change this line to the name of your png
Example: "@drawable/framework_background"
Click to expand...
Click to collapse
What do you use to edit the xml. Notepad++ ? It won't doit for me.just opens to one line across the top in notepad++.???
This is the pic
mholloway said:
What do you use to edit the xml. Notepad++ ? It won't doit for me.just opens to one line across the top in notepad++.???
Click to expand...
Click to collapse
Yes, I always use Notepad++. Do you have a screenshot?
Of the pic .already posted it above
Sent from my SPH-L710 using Tapatalk
mholloway said:
What do you use to edit the xml. Notepad++ ? It won't doit for me.just opens to one line across the top in notepad++.???
This is the pic
Click to expand...
Click to collapse
Give me a little bit. I'll give it a shot. The Heat game is on. They're destroying Indiana...
nyfl2004 said:
Give me a little bit. I'll give it a shot. The Heat game is on. They're destroying Indiana...
Click to expand...
Click to collapse
Lol.ok cool.I appreciate that.
Awesome work buddy. 2nd time doing the hardest theme. Glad you kept at it. You must know every line and PNG in this theme by heart by now. Too notch.
[email protected]'$ [email protected]@XY- Screw the Canadiens
Thebear j koss said:
Awesome work buddy. 2nd time doing the hardest theme. Glad you kept at it. You must know every line and PNG in this theme by heart by now. Too notch.
[email protected]'$ [email protected]@XY- Screw the Canadiens
Click to expand...
Click to collapse
Thanks brother. It's definitely gotten easier this time around. Although, Samsung got a little tricky with this release. I think they were a little peeved that we managed to invert MK3. Lol
mholloway said:
Lol.ok cool.I appreciate that.
Click to expand...
Click to collapse
Here you go brother. I hope this is helps.
https://www.dropbox.com/s/kcfrju178fhgcu1/framework-res.apk
nyfl2004 said:
Here you go brother. I hope this is helps.
https://www.dropbox.com/s/kcfrju178fhgcu1/framework-res.apk
Click to expand...
Click to collapse
Your awesome.I will download and check it out.thank you.
mholloway said:
Your awesome.I will download and check it out.thank you.
Click to expand...
Click to collapse
No worries man. I'll hit you up with some thanks tomorrow. No more left for today. Lol
nyfl2004 said:
No worries man. I'll hit you up with some thanks tomorrow. No more left for today. Lol
Click to expand...
Click to collapse
No need to give me thanks.
Not bad.I maybe should of got a different white carbon pic, but still I think is awesome. Thanks again.this is cool.
Sent from my SPH-L710 using Tapatalk
Thanks, loving the theme...
Can can you use S5 mms, phone in the next version?
Sent from my kd2att using Tapatalk
When creating a theme using the Maker Pro website, I can't seem to change the highlight colour for pages. I've changed the colour values for both highlight options in the Maker, but it doesn't seem to affect the page highlight. I'd like to change the pink colour in the attached image.
I can change it once I've downloaded and applied the theme. Anyone else run into this? Have I missed something obvious? Is it not possible?
I had the same issue. Download the theme on you phone and then apply it. Then go to settings personalize then change accent colors. The only solution I have found.
Timbermill said:
When creating a theme using the Maker Pro website, I can't seem to change the highlight colour for pages. I've changed the colour values for both highlight options in the Maker, but it doesn't seem to affect the page highlight. I'd like to change the pink colour in the attached image.
I can change it once I've downloaded and applied the theme. Anyone else run into this? Have I missed something obvious? Is it not possible?
Click to expand...
Click to collapse
I had the same with my Biohazard theme,seems highlights default to pink if you select black as the main colour
Timbermill said:
When creating a theme using the Maker Pro website, I can't seem to change the highlight colour for pages. I've changed the colour values for both highlight options in the Maker, but it doesn't seem to affect the page highlight. I'd like to change the pink colour in the attached image.
I can change it once I've downloaded and applied the theme. Anyone else run into this? Have I missed something obvious? Is it not possible?
Click to expand...
Click to collapse
Might want to remove the phone number in the image
paperecho said:
I had the same issue. Download the theme on you phone and then apply it. Then go to settings personalize then change accent colors. The only solution I have found.
Click to expand...
Click to collapse
steelmaggot said:
I had the same with my Biohazard theme,seems highlights default to pink if you select black as the main colour
Click to expand...
Click to collapse
Thanks for the confirmation. Dark grey still gives me pink. Will test the thresholds when I sober up
aooga said:
Might want to remove the phone number in the image
Click to expand...
Click to collapse
They're just spoofs from the website, feel free to call
Timbermill said:
They're just spoofs from the website, feel free to call
Click to expand...
Click to collapse
Ah...whoops. I thought it was your phone.
Maybe i have a solution for you guys, at least for the rooted phones.
I had the same problem on my M8 with Sense 7 Software and Theme Maker Pro.
The pink color seems to appear with a black/dark theme.
I'm using Insert Coin, which has some additional black accent colors.
I made some investigations and i found out, how to change them to the color i want, the htc green from Sense 6.
Ok, if you can edit system files on your phone (root), go to \system\customize\ACC (path/file may vary with carrier phones) and open default.xml with a text editor.
Add the red highlighted part and don't forget to save.
I marked the color code of the accent color which i changed to green.
Code:
<app name="ThemeSelector">
<item type="string-array" name="cmf_theme_color">
<string>cc=GOD00:wp=wallpapers_07.jpg:c1=#857663:c2=#73a1ae:c3=#8c7f6f:c4=#46413d:c1k=#4c4439:c2k=#405361:c3k=#403b35:c4k=#292522:c1l=#f4bd56:c2l=#96f2ef:c3l=#ffb661:c4l=#ffb661:d1=#857663:d2=#73a1ae:d3=#8c7f6f:d4=#46413d</string>
</item>
<item type="string-array" name="default_theme_color">
<string>id=com.htc.theme.tcceac82e-953e-43df-bdac-cbb094435004:title=Pastorale:c1=#334932:c2=#f16125:c3=#637a46:c4=#00b79f:c1k=#1e402b:c2k=#b4481b:c3k=#4d6136:c4k=#028b78:c1l=#d8b827:c2l=#b4481b:c3l=#f16125:c4l=#d8b827:d1=#334932:d2=#f16125:d3=#637a46:d4=#00b79f</string>
<string>id=com.htc.theme.t1e4578e0-0df4-4c4f-8941-4df7511459fd:title=Numéro:c1=#7fd3c4:c2=#f68b9f:c3=#bdbcb9:c4=#a4a4a1:c1k=#72bdb0:c2k=#c86579:c3k=#b2b0ae:c4k=#959492:c1l=#f68b9f:c2l=#7fd3c4:c3l=#7fd3c4:c4l=#7fd3c4:d1=#7fd3c4:d2=#f68b9f:d3=#bdbcb9:d4=#a4a4a1</string>
<string>id=com.htc.theme.tc5962215-448b-47ad-8428-dab9ce38e070:title=Innerspace:c1=#58c9a5:c2=#29c7d3:c3=#5d3d7f:c4=#f8bd1f:c1k=#2d9476:c2k=#24949e:c3k=#452b61:c4k=#bb911e:c1l=#71ffd2:c2l=#252e42:c3l=#d9e021:c4l=#29c7d3:d1=#58c9a5:d2=#29c7d3:d3=#5d3d7f:d4=#f8bd1f</string>
<string>id=com.htc.theme.ta02d84bb-bff9-4d74-8c5c-396e29c27067:title=Traction:c1=#f44336:c2=#f44336:c3=#f44336:c4=#f44336:c1k=#411310:c2k=#411310:c3k=#411310:c4k=#411310:c1l=#ff5e52:c2l=#ff5e52:c3l=#ff5e52:c4l=#ff5e52:d1=#f44336:d2=#411310:d3=#9c2820:d4=#ff5e52</string>
<string>id=com.htc.theme.t4958e5c8-4a86-4d2f-8ad7-a491a790b18d:title=Tilt:c1=#1f1e20:c2=#1f1e20:c3=#1f1e20:c4=#1f1e20:c1k=#0c0c0d:c2k=#0c0c0d:c3k=#0c0c0d:c4k=#0c0c0d:c1l=#188df2:c2l=#188df2:c3l=#188df2:c4l=#188df2:d1=#0c0c0d:d2=#1f1e20:d3=#404040:d4=#188df2</string>
<string>id=com.htc.theme.td77bd697-2811-482e-961f-e65cbdffdf65:title=Nimbus:c1=#a6744b:c2=#a6744b:c3=#a6744b:c4=#a6744b:c1k=#4d3522:c2k=#4d3522:c3k=#4d3522:c4k=#4d3522:c1l=#ffb273:c2l=#ffb273:c3l=#ffb273:c4l=#ffb273:d1=#a6744b:d2=#4d3522:d3=#8f6542:d4=#ffb273</string>
<string>id=com.htc.theme.tb930c680-2eae-47da-909f-992e4f061056:title=Origami:c1=#0096b6:c2=#3bd8b9:c3=#d2916e:c4=#f55732:c1k=#006a81:c2k=#44967c:c3k=#a66342:c4k=#bb5841:c1l=#f55732:c2l=#f55732:c3l=#3bd8b9:c4l=#0096b6:d1=#0096b6:d2=#3bd8b9:d3=#d2916e:d4=#f55732</string>
<string>id=com.htc.theme.t51edf118-cfb9-465d-b1e4-d650534b8e9c:title=Cascadia:c1=#273e81:c2=#20a9ff:c3=#4e3fdf:c4=#7f2085:c1k=#101936:c2k=#146699:c3k=#2a2278:c4k=#49124d:c1l=#4d79ff:c2l=#fff776:c3l=#41dce8:c4l=#f665ff:d1=#273e81:d2=#20a9ff:d3=#4e3fdf:d4=#7f2085</string>
[COLOR="Red"]<string>id=com.htc.theme.tb930c680-2eae-47da-909f-992e4f061012:title=Black:c1=#000000:c2=#000000:c3=#000000:c4=#000000:c1k=#000000:c2k=#000000:c3k=#000000:c4k=#000000:c1l=#a1a1a1:c2l=#a1a1a1:c3l=#a1a1a1:c4l=#a1a1a1:d1=#000000:d2=#000000:d3=#a1a1a1:d4=#000000</string>
<string>id=com.htc.theme.tf803b3df-66cb-4e8a-a579-19b0513dsd10:title=Black 1:c1=#000000:c2=#000000:c3=#000000:c4=#000000:c1k=#000000:c2k=#000000:c3k=#000000:c4k=#000000:c1l=#4472f5:c2l=#4472f5:c3l=#4472f5:c4l=#4472f5:d1=#000000:d2=#000000:d3=#4472f5:d4=#000000</string>
<string>id=com.htc.theme.tf803b3df-66cb-4e8a-a579-19b0513efg10:title=Black 2:c1=#000000:c2=#000000:c3=#000000:c4=#000000:c1k=#000000:c2k=#000000:c3k=#000000:c4k=#000000:c1l=#[COLOR="SeaGreen"]4EA670[/COLOR]:c2l=#[COLOR="SeaGreen"]4EA670[/COLOR]:c3l=#[COLOR="SeaGreen"]4EA670[/COLOR]:c4l=#[COLOR="SeaGreen"]4EA670[/COLOR]:d1=#000000:d2=#000000:d3=#[COLOR="SeaGreen"]4EA670[/COLOR]:d4=#000000</string>
<string>id=com.htc.theme.tf803b3df-66cb-4e8a-a579-19b0513esa10:title=Black 3:c1=#000000:c2=#000000:c3=#000000:c4=#000000:c1k=#000000:c2k=#000000:c3k=#000000:c4k=#000000:c1l=#ef0410:c2l=#ef0410:c3l=#ef0410:c4l=#ef0410:d1=#000000:d2=#000000:d3=#ef0410:d4=#000000</string>
<string>id=com.htc.theme.tf803b3df-66cb-4e8a-a579-19b0513eva10:title=Grey 3:c1=#17212A:c2=#17212A:c3=#17212A:c4=#17212A:c1k=#17212A:c2k=#17212A:c3k=#ef0410:c4k=#17212A:c1l=#ef0410:c2l=#ef0410:c3l=#ef0410:c4l=#ef0410:d1=#17212A:d2=#17212A:d3=#ef0410:d4=#17212A</string>[/COLOR]
</item>
</app>
I'm not sure, if this can/will work on M9 and its software, but maybe worth a try.
Thanks @ineedone for making this possible!
old.splatterhand said:
Maybe i have a solution for you guys, at least for the rooted phones.
I had the same problem on my M8 with Sense 7 Software and Theme Maker Pro.
The pink color seems to appear with a black/dark theme.
I'm using Insert Coin, which has some additional black accent colors.
I made some investigations and i found out, how to change them to the color i want, the htc green from Sense 6.
Ok, if you can edit system files on your phone (root), go to \system\customize\ACC (path/file may vary with carrier phones) and open default.xml with a text editor.
Add the red highlighted part and don't forget to save.
I marked the color code of the accent color which i changed to green.
Code:
<app name="ThemeSelector">
<item type="string-array" name="cmf_theme_color">
<string>cc=GOD00:wp=wallpapers_07.jpg:c1=#857663:c2=#73a1ae:c3=#8c7f6f:c4=#46413d:c1k=#4c4439:c2k=#405361:c3k=#403b35:c4k=#292522:c1l=#f4bd56:c2l=#96f2ef:c3l=#ffb661:c4l=#ffb661:d1=#857663:d2=#73a1ae:d3=#8c7f6f:d4=#46413d</string>
</item>
<item type="string-array" name="default_theme_color">
<string>id=com.htc.theme.tcceac82e-953e-43df-bdac-cbb094435004:title=Pastorale:c1=#334932:c2=#f16125:c3=#637a46:c4=#00b79f:c1k=#1e402b:c2k=#b4481b:c3k=#4d6136:c4k=#028b78:c1l=#d8b827:c2l=#b4481b:c3l=#f16125:c4l=#d8b827:d1=#334932:d2=#f16125:d3=#637a46:d4=#00b79f</string>
<string>id=com.htc.theme.t1e4578e0-0df4-4c4f-8941-4df7511459fd:title=Numéro:c1=#7fd3c4:c2=#f68b9f:c3=#bdbcb9:c4=#a4a4a1:c1k=#72bdb0:c2k=#c86579:c3k=#b2b0ae:c4k=#959492:c1l=#f68b9f:c2l=#7fd3c4:c3l=#7fd3c4:c4l=#7fd3c4:d1=#7fd3c4:d2=#f68b9f:d3=#bdbcb9:d4=#a4a4a1</string>
<string>id=com.htc.theme.tc5962215-448b-47ad-8428-dab9ce38e070:title=Innerspace:c1=#58c9a5:c2=#29c7d3:c3=#5d3d7f:c4=#f8bd1f:c1k=#2d9476:c2k=#24949e:c3k=#452b61:c4k=#bb911e:c1l=#71ffd2:c2l=#252e42:c3l=#d9e021:c4l=#29c7d3:d1=#58c9a5:d2=#29c7d3:d3=#5d3d7f:d4=#f8bd1f</string>
<string>id=com.htc.theme.ta02d84bb-bff9-4d74-8c5c-396e29c27067:title=Traction:c1=#f44336:c2=#f44336:c3=#f44336:c4=#f44336:c1k=#411310:c2k=#411310:c3k=#411310:c4k=#411310:c1l=#ff5e52:c2l=#ff5e52:c3l=#ff5e52:c4l=#ff5e52:d1=#f44336:d2=#411310:d3=#9c2820:d4=#ff5e52</string>
<string>id=com.htc.theme.t4958e5c8-4a86-4d2f-8ad7-a491a790b18d:title=Tilt:c1=#1f1e20:c2=#1f1e20:c3=#1f1e20:c4=#1f1e20:c1k=#0c0c0d:c2k=#0c0c0d:c3k=#0c0c0d:c4k=#0c0c0d:c1l=#188df2:c2l=#188df2:c3l=#188df2:c4l=#188df2:d1=#0c0c0d:d2=#1f1e20:d3=#404040:d4=#188df2</string>
<string>id=com.htc.theme.td77bd697-2811-482e-961f-e65cbdffdf65:title=Nimbus:c1=#a6744b:c2=#a6744b:c3=#a6744b:c4=#a6744b:c1k=#4d3522:c2k=#4d3522:c3k=#4d3522:c4k=#4d3522:c1l=#ffb273:c2l=#ffb273:c3l=#ffb273:c4l=#ffb273:d1=#a6744b:d2=#4d3522:d3=#8f6542:d4=#ffb273</string>
<string>id=com.htc.theme.tb930c680-2eae-47da-909f-992e4f061056:title=Origami:c1=#0096b6:c2=#3bd8b9:c3=#d2916e:c4=#f55732:c1k=#006a81:c2k=#44967c:c3k=#a66342:c4k=#bb5841:c1l=#f55732:c2l=#f55732:c3l=#3bd8b9:c4l=#0096b6:d1=#0096b6:d2=#3bd8b9:d3=#d2916e:d4=#f55732</string>
<string>id=com.htc.theme.t51edf118-cfb9-465d-b1e4-d650534b8e9c:title=Cascadia:c1=#273e81:c2=#20a9ff:c3=#4e3fdf:c4=#7f2085:c1k=#101936:c2k=#146699:c3k=#2a2278:c4k=#49124d:c1l=#4d79ff:c2l=#fff776:c3l=#41dce8:c4l=#f665ff:d1=#273e81:d2=#20a9ff:d3=#4e3fdf:d4=#7f2085</string>
[COLOR="Red"]<string>id=com.htc.theme.tb930c680-2eae-47da-909f-992e4f061012:title=Black:c1=#000000:c2=#000000:c3=#000000:c4=#000000:c1k=#000000:c2k=#000000:c3k=#000000:c4k=#000000:c1l=#a1a1a1:c2l=#a1a1a1:c3l=#a1a1a1:c4l=#a1a1a1:d1=#000000:d2=#000000:d3=#a1a1a1:d4=#000000</string>
<string>id=com.htc.theme.tf803b3df-66cb-4e8a-a579-19b0513dsd10:title=Black 1:c1=#000000:c2=#000000:c3=#000000:c4=#000000:c1k=#000000:c2k=#000000:c3k=#000000:c4k=#000000:c1l=#4472f5:c2l=#4472f5:c3l=#4472f5:c4l=#4472f5:d1=#000000:d2=#000000:d3=#4472f5:d4=#000000</string>
<string>id=com.htc.theme.tf803b3df-66cb-4e8a-a579-19b0513efg10:title=Black 2:c1=#000000:c2=#000000:c3=#000000:c4=#000000:c1k=#000000:c2k=#000000:c3k=#000000:c4k=#000000:c1l=#[COLOR="SeaGreen"]4EA670[/COLOR]:c2l=#[COLOR="SeaGreen"]4EA670[/COLOR]:c3l=#[COLOR="SeaGreen"]4EA670[/COLOR]:c4l=#[COLOR="SeaGreen"]4EA670[/COLOR]:d1=#000000:d2=#000000:d3=#[COLOR="SeaGreen"]4EA670[/COLOR]:d4=#000000</string>
<string>id=com.htc.theme.tf803b3df-66cb-4e8a-a579-19b0513esa10:title=Black 3:c1=#000000:c2=#000000:c3=#000000:c4=#000000:c1k=#000000:c2k=#000000:c3k=#000000:c4k=#000000:c1l=#ef0410:c2l=#ef0410:c3l=#ef0410:c4l=#ef0410:d1=#000000:d2=#000000:d3=#ef0410:d4=#000000</string>
<string>id=com.htc.theme.tf803b3df-66cb-4e8a-a579-19b0513eva10:title=Grey 3:c1=#17212A:c2=#17212A:c3=#17212A:c4=#17212A:c1k=#17212A:c2k=#17212A:c3k=#ef0410:c4k=#17212A:c1l=#ef0410:c2l=#ef0410:c3l=#ef0410:c4l=#ef0410:d1=#17212A:d2=#17212A:d3=#ef0410:d4=#17212A</string>[/COLOR]
</item>
</app>
I'm not sure, if this can/will work on M9 and its software, but maybe worth a try.
Thanks @ineedone for making this possible!
Click to expand...
Click to collapse
Small additional note: path is the same for all carriers and works on all devices.
And make sure you change the htc-id (the number in the front) of your new added theme to something different then the other themes, otherwise the themeselector icon might behave a bit unexpectedunexpected
You can report this problem here
http://www.htc.com/uk/contact/email/
http://www.htc.com/us/contact/email/
I had the same issue.
Your highlight is pink because you chose Black (#000000) for your blinkfeed color.
It seems the tool automatically picks a highlight based on the color you picked. I have attached an image showing you why you got pink. (The color pallet is red for some reason when you pick Black (#000000), and the color chosen seems to come from around the area the arrow points at.. but could be anywhere from the top to the bottom... not sure of the exact pattern.)
The only solution I found was to choose a very very dark NON black color. In the second image, you can see, I used Nearly Black (#00000a) and got a purple highlight.
It seems if you choose Black for your other colors in the screenshots attached, later on you can change those highlights... so it's ok... but Blinkfeed (the first color) has no such option.
It took me hours to play around until I got the Blinkfeed color and highlight color to somewhere "Acceptable". My blink feed ended up being a Navy Blue. And while HTC SAYS you can edit unpublished themes, I have not found a way, so I have to start all over to test colors on my actual phone... Ugh...