Note: The adw part has been abandoned because the new ADW launcher supports themes and I have released a ADW theme for this. ADW EX even has a setting for this.
What is this:
I got tired of creating morphs to make the icon-text (label) background transparent (so many versions, painful morphing on froyo), so heres a patched apk.
Launcher Pro: method and download here
Whats changed:
Its the same as the stock except that BubbleTextView.smali has one line commented.
To Install:
1) Backup settings and desktop in ADWsettings
2) uninstall any existing version. (using settings->applications or adb uninstall org.adw.launcher)
3) then push the apk to /system/app/
After installing restore settings and add back your widgets.
Code:
adb remount
adb push org.adw.launcher.apk /system/app/
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
All credit to AnderWeb for this launcher. Official site.
Downloads:
[0.9.0 apk]
smali
Hmm, cool. Did the same for launcher-pro. Any idea wht controls the icon text color ?
Daneshm90 said:
Hmm, cool. Did the same for launcher-pro. Any idea wht controls the icon text color ?
Click to expand...
Click to collapse
havent looked for that yet. the src is here
What is the mod doing? I can't really tell. =X
JCopernicus said:
What is the mod doing? I can't really tell. =X
Click to expand...
Click to collapse
Its removing the black background u normally have behind icon text.
dude, there's an option for this... take a look
deimdos said:
dude, there's an option for this... take a look
Click to expand...
Click to collapse
dude there isnt. This mod removes the background behind icon text, not the image u get when u select/highlight an icon.
deimdos said:
dude, there's an option for this... take a look
Click to expand...
Click to collapse
Umm, no its not... Only the option to hide the text completely, not the background.
Daneshm90 said:
Hmm, cool. Did the same for launcher-pro. Any idea wht controls the icon text color ?
Click to expand...
Click to collapse
I dont think it sets a color hence it gets a default white (could be wrong)
see Line 807 in Launcher.java. method createShortcut()
Code:
View createShortcut(int layoutResId, ViewGroup parent, ApplicationInfo info) {
TextView favorite = (TextView) mInflater.inflate(layoutResId, parent, false);
if (!info.filtered) {
info.icon = Utilities.createIconThumbnail(info.icon, this);
info.filtered = true;
}
favorite.setCompoundDrawablesWithIntrinsicBounds(null, info.icon, null, null);
if(!uiHideLabels)favorite.setText(info.title);
[COLOR="Blue"] //britoso: try adding "if(!uiHideLabels) favorite.setTextColor(ColorStateList.valueOf(0xdddddd));"[/COLOR]
favorite.setTag(info);
favorite.setOnClickListener(this);
return favorite;
}
Daneshm90 said:
Its removing the black background u normally have behind icon text.
Click to expand...
Click to collapse
Ah okay, I don't use labels and I always have a pretty dark background. hehe
britoso said:
I dont think it sets a color hence it gets a default white (could be wrong)
see Line 807 in Launcher.java. method createShortcut()
Code:
View createShortcut(int layoutResId, ViewGroup parent, ApplicationInfo info) {
TextView favorite = (TextView) mInflater.inflate(layoutResId, parent, false);
if (!info.filtered) {
info.icon = Utilities.createIconThumbnail(info.icon, this);
info.filtered = true;
}
favorite.setCompoundDrawablesWithIntrinsicBounds(null, info.icon, null, null);
if(!uiHideLabels)favorite.setText(info.title);
[COLOR="Blue"] //britoso: try adding "if(!uiHideLabels) favorite.setTextColor(ColorStateList.valueOf(0xdddddd));"[/COLOR]
favorite.setTag(info);
favorite.setOnClickListener(this);
return favorite;
}
Click to expand...
Click to collapse
Awesome, it turns out its styles.xml that controls the color. bright_text_dark_focused.xml controls the text color of the icons in the drawer.
Also dont know about adw, but for launcher pro, u can just edit colors.xml to remove the icon text background, dont even have to touch the smali files.
Heres wht it looks like.
Very cool, should send tweet/pm over to wysie, see if he can roll it into the rest of the color modifications
Daneshm90 said:
Awesome, it turns out its styles.xml that controls the color. bright_text_dark_focused.xml controls the text color of the icons in the drawer.
Also dont know about adw, but for launcher pro, u can just edit colors.xml to remove the icon text background, dont even have to touch the smali files.
Heres wht it looks like.
Click to expand...
Click to collapse
It is set in an xml too but it didnt work when I tried it months ago.
JCopernicus said:
Very cool, should send tweet/pm over to wysie, see if he can roll it into the rest of the color modifications
Click to expand...
Click to collapse
Well its launcher dependant, so prolly he'll ignore me
Unless he does it for their stock launcher which is adw.
britoso said:
It is set in an xml too but it didnt work when I tried it months ago.
Click to expand...
Click to collapse
Hmm wierd, i guess its launcher dependant.
Daneshm90 said:
Awesome, it turns out its styles.xml that controls the color. bright_text_dark_focused.xml controls the text color of the icons in the drawer.
Also dont know about adw, but for launcher pro, u can just edit colors.xml to remove the icon text background, dont even have to touch the smali files.
Heres wht it looks like.
Click to expand...
Click to collapse
do mind sharing your edited color.xml(bright_text_dark_focused?) for launcher=pro?
icegad said:
do mind sharing your edited color.xml(bright_text_dark_focused?) for launcher=pro?
Click to expand...
Click to collapse
Sure here try this, its the whole apk, resigned ofcourse so u gotta uninstall ur current version.
Link
Heres the bold version, the desktop icon text are bold.
Link
Daneshm90 said:
Sure here try this, its the whole apk, resigned ofcourse so u gotta uninstall ur current version.
Link
Heres the bold version, the desktop icon text are bold.
Link
Click to expand...
Click to collapse
thx.. work fine...what .xml did you edit exactly ..so i can copy to future launcher pro versions
edit do you have a white bold? for dark wallpapers
Awesome, it turns out its styles.xml that controls the color. bright_text_dark_focused.xml controls the text color of the icons in the drawer.
Colors.xml to remove the icon text background.
To add bold, just add this to styles.xml
<item name="android:textStyle">bold</item>
App bg
I love this launcher
Related
All credit goes to newone757 (see this thread) for the original idea, inspiration and most importantly the PSD template with which I made these icons. Without further ado:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
What you will need:
1. Desktop Visualizer for the icons/"tiles"
2. Launcher Pro Plus (though ADW Launcher's widget resizing function may work just as well) with homescreen set at 4 columns and 5 rows
Widgets used in these screenshots are Battstat ("small, numbers") and Digital Clock Widget by Maize (the date's text is set to black and therefore invisible). The vertical Power Control Widget comes with CyanogenMod6 (thank you, Cyanogen and #teamdouche!). Please note that I made the icons so that they're displayed optimally when you hide the status bar, as that's the display I prefer. The font used is, naturally, Zegoe/Segoe UI.
Links and downloads:
newone757's original thread: http://ip208-100-42-21.static.xda-developers.com/showthread.php?t=781455
Icon pack: Download
Metro/WinPhone 7 dock icons: http://metro.windowswiki.info/
I'll probably make and upload more icons later for essential functions like browser, gmail, calendar and so on.
looks very nice; however, i think the icons for my6sense, laputa, cachemate, and titanium backup could use more colors to match with the rest of the other icons
i wanna design a 2x1 icon
what the dimwnsions should be ? for HDPI
Can someone explain real quickly how I can change out the image in PhotoShop? I learned how to edit the text in the layers of the template, but I can't seem to figure out how to change the actual image or insert a new one. TIA!
Love it! Thnx!
Looks great. Just finished using the original icons on my setup. Does anyone know what the screen resolution changes to when you switch from 240 LCD density, to 200? I'd love to resize the icons to fit perfectly, but right now it just looks like crud, lol
Sorry, been busy. But:
masse1369 said:
Can someone explain real quickly how I can change out the image in PhotoShop? I learned how to edit the text in the layers of the template, but I can't seem to figure out how to change the actual image or insert a new one. TIA!
Click to expand...
Click to collapse
You will want the original PSD templates (download from newone's thread), not my PNG. If you've got those already, just click on the layer with the image, select the image and delete it. Find a new one, paste it on and it should remain behind the text layer.
Added icons for Quickoffice/documents to go, twitter, mail, browser, maps/car home, and file explorer.
Looks nice. Could someone make a youtube vid of the workings?
Can someone create a icon for the Bible please.
How did you get the CM6 power widget to not show the blue highlights?
anyone have a mirror for the first icon pack?
download keeps failing with that link
frankyou11 said:
How did you get the CM6 power widget to not show the blue highlights?
Click to expand...
Click to collapse
If you set it to vertical, it doesn't show highlights.
Here's a mirror for the first icon pack: http://hotfile.com/dl/71253135/a21fe23/grainysand_wp7tiles.zip.html
grainysand said:
If you set it to vertical, it doesn't show highlights.
Here's a mirror for the first icon pack: http://hotfile.com/dl/71253135/a21fe23/grainysand_wp7tiles.zip.html
Click to expand...
Click to collapse
awesome thanks man, that link worked
great icons can't wait for more
what do u have set up for the folder icon? cause I am drawing a blank on finding a work around to have it open a actual folder, if that's possible
The folder icon is actually for folder organizer. Obviously, not enough space for "folder organizer" as a title. So it goes with several other icons, hence the icon for Dropbox being a picture of a box with the caption "drop."
If you've got any apps you'd like icons for, feel free to request.
grainysand said:
The folder icon is actually for folder organizer. Obviously, not enough space for "folder organizer" as a title. So it goes with several other icons, hence the icon for Dropbox being a picture of a box with the caption "drop."
If you've got any apps you'd like icons for, feel free to request.
Click to expand...
Click to collapse
Hi,
I sent you a PM, not sure if you got but I'd pay you to custom make some images for me for my Nexus if I sent the pics to you? I don't have the proper software program to make them. Please let me know. I wouldn't ask you to do them for free and I feel that people who design stuff for us should be rewarded for their time and work.
Thanks in advance hopefully.
Apparently I disabled e-mail notifications for PMs. What do you have in mind? If it's more icons, making them is really very easy and I wouldn't want to take payment for it especially when I'm using someone else's photoshop template to start with.
grainysand said:
Apparently I disabled e-mail notifications for PMs. What do you have in mind? If it's more icons, making them is really very easy and I wouldn't want to take payment for it especially when I'm using someone else's photoshop template to start with.
Click to expand...
Click to collapse
I just have one pic of my girlfriend that I would like put together.
Like this.
http://ip208-100-42-21.static.xda-developers.com/showpost.php?p=8131894&postcount=25
Here's the link to the pic
http://www.zshare.net/image/80734242313d5586/
With the same links listed in that first link I posted.
And I wouldn't mind if you wanted to get paid for your time. I just can't seem to get PSD to work for.
Thanks in advance if you didn't mind doing it. It'll be greatly appreciated.
grainysand said:
If you set it to vertical, it doesn't show highlights.
Click to expand...
Click to collapse
Hmm... I've been using the vertical bar since updating to CM6 final, but the highlight has always been there for wifi and airplane mode. Don't see an option of removing them either.
frankyou11 said:
Hmm... I've been using the vertical bar since updating to CM6 final, but the highlight has always been there for wifi and airplane mode. Don't see an option of removing them either.
Click to expand...
Click to collapse
You have to uncheck rounded edge.
Cookiemonster introduced the new softkeybar in CHT 2.0. The standard icons don't look so well with my Lechu Firestorm buttons, so I decided to make my own keys. They should differ a little to the quicklinks icons, so they are round. I took some standard icons, searched with icon finder and modified these icons. The glassy round button (two layers with the icon between) is made with painshop pro. For the "done" icon there are two versions. For all who'd like to make their own icons the template is attached. Copy the files into the windows directory of your device.
My background is transparent. For this I used a blank 5E90131C_manila file (in the attached zip). But poyensa made a better solution. You have still a little line under the softkeys, but you also have a dark background for the menu.
And of course the original icons and 5E90131C_manila file are also attached.
BTW: The clocks are widgets you can find in this thread
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
EDIT: At a request I post a second set with the standard manila tab icons (only WM 6.5). You can use these for the free softkeys.
EDIT:[29/09/2010] A new version with the original white icons in the glas button.
EDIT:[30/11/2010] For easy installation I made a cab for the coloured standard buttons.
EDIT:[06/01/2011]For some time I've been using my white softkeys but they are changed at two positions (lock and phone) and have added some shadows. So they match more the coloured softkeys. They are in the CHT_2.0_Softkeys_glossy_round_rat_2665_white v2.zip.
.......RESERVED.......
.......RESERVED.......
.......RESERVED.......
.......RESERVED.......
Looking good ratt
I made myself a transparent menu/softkey background but had to go back to the stock one becuse I couldnt read the white menu text against a light wallpaper.....
im guessing theres an m9 file to change the text colour... any idea which one it is?
THANKs
^
Great job! But why is the menu transparent now? I put the old Manila back and it's still transparent...
Looking great
Thx for this
Greetz.
conantroutman said:
Looking good ratt
I made myself a transparent menu/softkey background but had to go back to the stock one becuse I couldnt read the white menu text against a light wallpaper.....
im guessing theres an m9 file to change the text colour... any idea which one it is?
Click to expand...
Click to collapse
Oh, that's a task for poyensa
pedmond said:
Great job! But why is the menu transparent now? I put the old Manila back and it's still transparent...
Click to expand...
Click to collapse
The 5E90131C_manila file in the original cab is the file from the CHT 2.0 beta. Have you made a sense restart after copying?
rat_2665 said:
Oh, that's a task for poyensa
Click to expand...
Click to collapse
Haha ok, thanks man ill check with him....
Sent From My Toaster Using A Tin Can And Some String
rat_2665 said:
The 5E90131C_manila file in the original cab is the file from the CHT 2.0 beta. Have you made a sense restart after copying?
Click to expand...
Click to collapse
Yup, found that out eventually. I'm all set now, thanks.
can u make a new thread. to upload more CHT 2.0 Stuff?
(collection)
ChrisXP27 said:
can u make a new thread. to upload more CHT 2.0 Stuff?
(collection)
Click to expand...
Click to collapse
Chris, I don't think there should be only one thread for CHT 2.0 stuff. Here are so many different theme makers with their own unique design. They will all make some new threads in the next time . This thread is one of my little contributions.
wonderful work. I love it.
rat_2665 said:
Oh, that's a task for poyensa
Click to expand...
Click to collapse
mmmmmm
have a look into the attached file ... look for the green color property
thanks p....
green was one of the colors I needed so you've done half the work for me
much appreciated man
poyensa said:
mmmmmm
have a look into the attached file ... look for the green color property
Click to expand...
Click to collapse
Ha, I was right - it was a simple task for poyensa .
Thank you very much!
Much better looking than original and working fine!
Any chance you can make an icon for pics? i like the way yours look and want to replace one softkey for access to my photos.
bx10r said:
Any chance you can make an icon for pics? i like the way yours look and want to replace one softkey for access to my photos.
Click to expand...
Click to collapse
In the first post a second set is added. These are the icons of the standard manila tabs. So you can use these for the free softkeys.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
I have been working on a couple of new battery widgets for CHT 2.0 and here is the first one. It is based on Poyensa's original text battery kitchen but with quite a bit of modification.
There are four layouts each giving a different text formatting option - UPPERlower, lowerUPPER, UPPERUPPER, lowerlower.
There is also the option to hide the 'percent' string, and to specify the color for each line of text through registry changes. The 'percent' string is enabled by default. To hide it use your registry editor and change HKCU\Software\HTC\Manila\CHT.duncTextBattery.Percent.Visible to 0
The font used is named specifically for the widget so it is easy to substitute the font for your own and it won't affect anything else - just rename your font to duncTextBatteryFont.ttf and copy/overwrite to \Windows.
You can also specify colors for each line of text through reg edit. Default is white for each line. To change edit the following registry keys:
HKCU\Software\HTC\Manila\CHT.duncTextBattery.ValueColor
HKCU\Software\HTC\Manila\CHT.duncTextBattery.PercentColor
HKCU\Software\HTC\Manila\CHT.duncTextBattery.ChargingColor
Values are RGB and need to be in this format - 255,255,255 - with no spaces.
If anyone is interested the colour code I used for the percent string in the screenshots is 0,185,255.
The widget background is dynamic so it will change height depending on how many lines of text are visible. If you want to remove the background then just install the 'Remove TextBattery background' cab or use CFCGUI to replace the background image with a transparency of your choosing (13d93430_manila)
There is also specific behaviour built in that dictates what lines of text show when fully charged, so if battery is at 100% and on charge all that will display is 'FULLYcharged' (percent hidden even if normally there), but if at 100% and not on charge then ONEhundred will show (with percent string if not hidden by reg edit).
Resizeable and pinnable.
Pressing on the widget will take you straight to the Battery & Backlight options screen.
Any questions please ask!
For those of you having an issue with the widget displaying as a white box I apologise - this is caused by the qtc image file not conforming to a recognised size. I have amended the qtc now and updated the widget cab and the Remove Background cab, but for anyone who has already installed the widget and has this issue just download and install the White Box Fix cab and restart Sense - should be OK then.
2/2/11 Charging color fix - the first and second versions of the widget cab had an issue where the Charging text color did not change regardless of the value set in the registry. This was due to one typo in the lua script (Tect instead of Text!). The widget cab now attached has the fix included, however if you have already installed then simply download and install the Charging Color Fix cab. Might need a Sense restart for the fix to take effect.
For anyone who wants them I have also attached the files for the Comm Switches (cab) and the softkeys used in the screenshots. In the softkey zip you'll find the ones I use as pngs to copy/paste into windows, the manila file for the menu background to do the same, and the psd template in case you want to make any of your own.
The icons down the left side of the screen are the page switch links and notification icons (mail and messages) that I made for BLUE SK-i. You can download the switch links cab and the BLUE SK-i skin for them in THIS post, but unfortunately I can't find the skin shown above for them anywhere (must have deleted them by mistake) so you'll need to use the psd template from there to remake them if you want this look.
nice job as always
could u creat 2 different fonts
MrBeOTP2 said:
nice job as always
could u creat 2 different fonts
Click to expand...
Click to collapse
Unfortunately not as it is all one text string. I did everything else you asked though
Wonderfull widget looks simply amazing
dunc...fantastic work!
now, it is just begging for the same idea for memory!
congrats!
Thanks Dunc. Wonderful work as always. Can I ask in your screen shots what R things on the left. I mean the colouring markers with stuff like friends mail message media written next to them. What r they?.
Dunc001 said:
Unfortunately not as it is all one text string. I did everything else you asked though
Click to expand...
Click to collapse
hehe . tks Dunc
Many thanks Dunc. I like very much your widget.
I see that someone had a busy time. Many new stuff is coming. Great job. Cheers m8
Wonderful
Amazing work!
Thank you looks really nice ^^
m0nkeyman said:
Thanks Dunc. Wonderful work as always. Can I ask in your screen shots what R things on the left. I mean the colouring markers with stuff like friends mail message media written next to them. What r they?.
Click to expand...
Click to collapse
To everyone - you are most welcome and thank you for the thank yous
@m0nkeyman - A little surprise for later in the week...
Dunc001 said:
To everyone - you are most welcome and thank you for the thank yous
@m0nkeyman - A little surprise for later in the week...
Click to expand...
Click to collapse
What a tease! Can't wait.
Thnx man really great job..
I like these text widgets..
Dunc001 said:
To everyone - you are most welcome and thank you for the thank yous
@m0nkeyman - A little surprise for later in the week...
Click to expand...
Click to collapse
Oh I like surprises . Please give me a heads up when you release it.
Hi Dunc,
Just to say Big thanks to you and Poyensa for sharing another great work.
I made a Dinik's Anastasia skin for this one so I'll like to share it if you don't mind
Just copy/paste/overwrite the attached manila file in /windows directory and reset Sence and enjoy it!
Best regards.
BTW I fixed the AddonWidget Slot 10 problem thanks to Poyensa, Thanks for your help
i can ot find duncTextBattery in HKCU\Software\HTC\Manila\????
MrBeOTP2 said:
i can ot find duncTextBattery in HKCU\Software\HTC\Manila\????
Click to expand...
Click to collapse
Hi MrBeOTP2,
I found it in HKCU\Software\HTC\Manila\CHT.duncTextBat...(there are 4 string)
I hope you get it
Best regards.
MrBeOTP2 said:
i can ot find duncTextBattery in HKCU\Software\HTC\Manila\????
Click to expand...
Click to collapse
Sorry, typo's in first post! Should all be CHT.duncTextBattery.Whatever
got it ^^! my bad
Here is a pic of my home screen, nothing too different than stock, I like to keep it clean and simple. But would like to know how to get transparent app icons names, without the black border ? Right now they have the black bubble under each app, is there a way to not have that black border, and just the white icon name only ?
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
[Off topic] What rom is this? (4G icon looks pretty good)
[On Topic] If your using ADW Launcher (That's what it looks like to me), there is an option to turn off the background borders. Not sure, i think its under user interface.
Download Desktop Visualizer free in the market. Use it to place your icons on the desktop and you can do with or without the background, with white text or black. You set each icon up and a widget.
Zorachus said:
Here is a pic of my home screen, nothing too different than stock, I like to keep it clean and simple. But would like to know how to get transparent app icons names, without the black border ? Right now they have the black bubble under each app, is there a way to not have that black border, and just the white icon name only ?
Click to expand...
Click to collapse
What Launcher is this? Thank you!
This may vary depending on your launcher but for mine ADWLauncher goto ADW Settings > UI Settings > Icons > New Icon Settings > Icon Label Color. Bringing it all the way to the left makes it transparent I believe.
Autris said:
[Off topic] What rom is this? (4G icon looks pretty good)
[On Topic] If your using ADW Launcher (That's what it looks like to me), there is an option to turn off the background borders. Not sure, i think its under user interface.
Click to expand...
Click to collapse
its myns warm 2.2 rls5
limitedtime said:
What Launcher is this? Thank you!
Click to expand...
Click to collapse
its the standard sense launcher (rosie), myn just replaced some of the images so it looks 10 times better
you can't remove it with sense. you have to install adw or launcher pro.
You have to hex edit the resources.arsc in Rosie.apk.
VinceOB said:
You have to hex edit the resources.arsc in Rosie.apk.
Click to expand...
Click to collapse
I told people you weren't dead!
gomorrah said:
I told people you weren't dead!
Click to expand...
Click to collapse
ahaha whats up my brotha! Im not dead, just lurking. Too many noobs.
VinceOB said:
ahaha whats up my brotha! Im not dead, just lurking. Too many noobs.
Click to expand...
Click to collapse
Totally understand.
VinceOB said:
You have to hex edit the resources.arsc in Rosie.apk.
Click to expand...
Click to collapse
Any chance you can share the line(s) that need to be hex edited and what they would need to be changed to? Visual desktop was a no go for me. Thank you. I'm on virus' my touch 4G rom and hate the charcoal translucent backrounds behind all the apps.
I am not sure anybody cares anymore, but I posted a reply on page 3 of JS's mod showing the changes in the code. I got rid of the bubbles just by changing
res\values\colors.xml
line 4 from <color name="bubble_dark_background">#b2191919</color>
to <color name="bubble_dark_background">#00191919</color>
It seems to be working fine on my stock ninjawolf's 4.53 ROM with a few other mods that I threw in. I'd show a screenshot, but it's my boring desktop minus the bubbles, and you can imagine.
Just a black version jobmanager.apk (Taskmanager).
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
The HELP section remains white.
BACKUP your current jobmanager.apk before proseeding!
Flash via recovery OR extract jobmanager.apk from zip and overwrite to /system/app/ ++ set owner and permissions.
Download
------
Should have done this earlier, sorry mate.
sohrab1985 finished up the submenu's in the manage application section -post18-
-----
Also upped a modified service.jar which removes the USB Debugging message in the quickpannel..
Download
Enjoy
biopsin said:
Just a black version jobmanager.apk (Taskmanager).
The HELP section remains white.
OBS! BACKUP your current jobmanager.apk before proseeding!
Flash via recovery OR extract jobmanager.apk from zip and overwrite to /system/app/ ++ set owner and permissions.
Enjoy
Click to expand...
Click to collapse
Good job, mate.
I have a question, have tried changing the color of "Mange Application" part in the "Settings" to black?
I see what u mean... no joy ..cant find the parent.
biopsin said:
I see what u mean... no joy ..cant find the parent.
Click to expand...
Click to collapse
I know where it is, its the same one for Battery Usage, but there is just one problem. I'll tell you later, I have a class now.
Nice, lets crack this nutt
Noticed Nexus S have a black version of Manage applications/battery use/Running services/Mem usage
..so guess im on a Rom hunt for now
In Settings/res/value/style.xml change:
<style name="NoTitleWhiteStyle" parent="@android:style/Theme.Light.NoTitleBar">
<item name="android:listViewStyle">@android:style/Widget.ListView.White</item>
to
<style name="NoTitleWhiteStyle" parent="@android:style/Theme.Black">
<item name="android:listViewStyle">@android:style/Widget.ListView</item>
You can see the problem in the pictures.
sohrab1985 said:
You can see the problem in the pictures.
Click to expand...
Click to collapse
Yes I see, the text is all shadow, but how did the white appear in "Running" tab, You ex already edited the running_processes_item.xml.xml?
EDIT: the 3 to color android:textColor="#ffffffff"
fixes Running tab
manage_applications_item.xml
EDIT : the 2 to color android:textColor="#ffffffff"
fixes the size in the remaning tabs
But the App label is no where to be found..might be in settingsprovider??
Great work man! not much left to edit
Want to take a swing at this?
Like the way MIUI has the bottom QuickSettings. i manage to move the music&call since it was easy, but the rest is above my head for now.
biopsin said:
Yes I see, the text is all shadow, but how did the white appear in "Running" tab, You ex already edited the running_processes_item.xml.xml?
EDIT: the 3 to color android:textColor="#ffffffff"
fixes Running tab
manage_applications_item.xml
EDIT : the 2 to color android:textColor="#ffffffff"
fixes the size in the remaning tabs
But the App label is no where to be found..might be in settingsprovider??
Great work man! not much left to edit
Want to take a swing at this?
Like the way MIUI has the bottom QuickSettings. i manage to move the music&call since it was easy, but the rest is above my head for now.
Click to expand...
Click to collapse
Good job with colors.
I will look into into it to find the app lables color.
As the bottom quickpanel I have no idea
I just know how to make those bars (sliders) thiner.
The lables color is in the framework, in value/colors.xml, but if you change the color from there it changes oher black colors insome other parts, too. So I need to find the source. of them which is in layout and change the color one by one until I find the right one.
biopsin said:
Yes I see, the text is all shadow, but how did the white appear in "Running" tab, You ex already edited the running_processes_item.xml.xml?
EDIT: the 3 to color android:textColor="#ffffffff"
fixes Running tab
manage_applications_item.xml
EDIT : the 2 to color android:textColor="#ffffffff"
fixes the size in the remaning tabs
But the App label is no where to be found..might be in settingsprovider??
Great work man! not much left to edit
Want to take a swing at this?
Like the way MIUI has the bottom QuickSettings. i manage to move the music&call since it was easy, but the rest is above my head for now.
Click to expand...
Click to collapse
wow nice one. you mind sharing how u move those quick toggle to the bottom? what does "the rest" refer to?
kay_kiat88 said:
"the rest" refer to?
Click to expand...
Click to collapse
the actual quicksettings im illutrating i want to move
This is what i manage so far..
sohrab1985 said:
The lables color is in the framework, in value/colors.xml, but if you change the color from there it changes oher black colors insome other parts, too. So I need to find the source. of them which is in layout and change the color one by one until I find the right one.
Click to expand...
Click to collapse
Yes the rabbit hole goes deep, shouldn' have taken that blue pill, to late wææ..
If you want the eaze point me with things to check out while u have classes
biopsin said:
Yes the rabbit hole goes deep, shouldn' have taken that blue pill, to late wææ..
If you want the eaze point me with things to check out while u have classes
Click to expand...
Click to collapse
Thanks mate.
We can't change the color to white, because it changes colors of some other parts, too. They have same value. You can see it in picture 1 and 2.
The best thing we can do is those two last pictures.
I'm looking for the colors of the "Running" tab, because it's white and different than other tab. At least we can make all the tabs the same.
I understand its defined by the framework. Change a global setting it spreads down the lane.
so the manage_application_item gets served a color from the colors.xml but where is this defined in the layout? does it mean that black is already defined for the @id/app_name in the framework? this will be difficult to override without redoing earlier changes, which ends in yet a new design, brilliant! its a good discovery maybe a right one as well haha
keep cookin ;
oh the blue subtext looked cooler than white.
biopsin said:
I understand its defined by the framework. Change a global setting it spreads down the lane.
so the manage_application_item gets served a color from the colors.xml but where is this defined in the layout? does it mean that black is already defined for the @id/app_name in the framework? this will be difficult to override without redoing earlier changes, which ends in yet a new design, brilliant! its a good discovery maybe a right one as well haha
keep cookin ;
Click to expand...
Click to collapse
Sorry I made a mistake, it's not in the layout, it's in "framework-res.apk/res/color/primary_text_light.xml" and "framework-res.apk/res/color/secondary_text_light.xml"
BTW, there is another problem. Changing the color of the Running tab changes other colors, including the clock on the satatus bar and other fonts on satus bar like Media Scanning and even the clock on the lock screen.
but the white text in the first picture Running tab you only change the main theme to black, and the white text was there correct?
biopsin said:
but the white text in the first picture Running tab you only change the main theme to black, and the white text was there correct?
Click to expand...
Click to collapse
Yes, It's white but the other tabs are gray and because of that I wanted to change the color to gray like the other tabs but it changes some other thigns.
The right value for Running tab is in framework-res.apk\res\color\primary_text_dark.xml.
I think this is the best think we can make considering those problems that we talked about.
I've attached both framework-res.apk and Settings.apk, if you want to try it.
sohrab1985 said:
I think this is the best think we can make considering those problems that we talked about.
Click to expand...
Click to collapse
Well if worst case cenario is white txt in Power Menu im happy to test.
biopsin said:
Well if worst case cenario is white txt in Power Menu im happy to test.
Click to expand...
Click to collapse
Don't worry, the power menu isn't white. it's dark gray.