[MOD] [Launcher-Theme] TW4.5 Glass-Blue - Galaxy S I9000 Themes and Apps

Hi Guys
Today i want present you my new Launcher-Theme.
Features:
Themed TW4.5 Launcher
Themed Dialer - Icon
Themed Contacts - Icon
Themed- Messeging - Icon
Installation:
Just download it and install it over CWM!
Download:
Only for JVP deodexed:
http://db.tt/bJflsMZ
Screenshots:
{
"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"
}
Credits:
Fr4gg0r
Swiftwork
I am working on it, its not finished yet.
Have fun!

Waiting ...
Thanks anyway

Please use the integrated theming mechanism instead of modding the .apk, launcher will be updated later this evening so you can theme more icons.

Attached is an test version with more theming capabilities.. would be nice if you would try it and report back.
The following possibilities are added to the existing ones:
case Id.Menu.cancel: name = Settings.currentThemeDir+"menu_cancel.png"; break;
case Id.Menu.discard: name = Settings.currentThemeDir+"menu_discard.png"; break;
case Id.Menu.edit: name = Settings.currentThemeDir+"menu_edit.png"; break;
case Id.Menu.preferences: name = Settings.currentThemeDir+"menu_preferences.png"; break;
case Id.Menu.save: name = Settings.currentThemeDir+"menu_save.png"; break;
case Id.Menu.search: name = Settings.currentThemeDir+"menu_search.png"; break;
case Id.Menu.share: name = Settings.currentThemeDir+"menu_share.png"; break;
case Id.Menu.wallpaper: name = Settings.currentThemeDir+"menu_wallpaper.png"; break;
case Id.Menu.settings: name = Settings.currentThemeDir+"menu_settings.png"; break;
case Id.Folder.icon: name = Settings.currentThemeDir+"folder_icon.png"; break;
case Id.Folder.icon_mainmenu: name = Settings.currentThemeDir+"folder_icon_mainmenu.png"; break;
case Id.Folder.open: name = Settings.currentThemeDir+"folder_open.png"; break;
case Id.Add.folder: name = Settings.currentThemeDir+"add_folder.png"; break;
case Id.Add.shortcut: name = Settings.currentThemeDir+"add_shortcut.png"; break;
case Id.Add.wallpaper: name = Settings.currentThemeDir+"add_wallpaper.png"; break;
case Id.Add.widget: name = Settings.currentThemeDir+"add_widget.png"; break;
and
"pageIndicator.png"
Click to expand...
Click to collapse
I think that should be quite self explanatory..

Nice!
Will test it...
Sent from my GT-I9000 using Tapatalk

any easy way to install tw themes

hi sir i flash this theme on galaxy xxjvp very good relaible and speedy but i have 1 prob. message background is black and message cant read plz help me

Related

Help: How to extract the compressed files from XIP?

Hi all, I'm doing sth. to O2 XDA Stealth rom.
But I found that the "files" (not "modules") in XIP are all compressed, boot.hv looks just like this:
{
"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 compared the file with some other compressed files, and considered that the file was probabily compressed by LZX arithmetic.
So I tried to decompress the file with cecompr_nt.dll, and here is some codes:
Code:
HMODULE hDll= LoadLibrary(_T("G:\\Projects\\TestCompCE\\cecompr_nt.dll"));
if (hDll==NULL || hDll==INVALID_HANDLE_VALUE) {
printf("ERROR - Can not load the cecompr_nt library\n");
return -1;
}
FILE * hTest = NULL;
_tfopen_s(&hTest,_T("boot.hv"),_T("rb"));
int iSize =0;
fseek(hTest,0,SEEK_END);
iSize = ftell(hTest);
fseek(hTest,0,SEEK_SET);
BYTE * pBuf1 = (BYTE *)malloc(iSize);
BYTE * pBuf2 = (BYTE *)malloc(iSize);
fread_s(pBuf1,iSize,iSize,1,hTest);
fclose(hTest);
ZeroMemory(pBuf2,iSize);
FNCompressOpen CompressOpen= NULL;
FNCompressConvert CompressConvert= NULL;
FNCompressClose CompressClose= NULL;
CompressOpen= (FNCompressOpen)GetProcAddress(hDll, ("LZX_DecompressOpen"));
CompressConvert= (FNCompressConvert)GetProcAddress(hDll, ("LZX_DecompressDecode"));
CompressClose= (FNCompressClose)GetProcAddress(hDll, ("LZX_DecompressClose"));
if (CompressOpen==NULL || CompressConvert==NULL || CompressClose==NULL) {
printf("ERROR - Can not find the compression functions in the library\n");
FreeLibrary(hDll);
return -2;
}
DWORD stream = CompressOpen(0x10000, iSize, Compress_AllocFunc, Compress_FreeFunc, 0);
if (stream == NULL || stream==0xFFFFFFFF) {
printf("ERROR - CompressOpen");
return 14;
}
DWORD res=CompressConvert( stream, pBuf1,0x1AFF,pBuf2,iSize);//Compressed size of boot.hv is 0x1AFF
return 0;
But the CompressConvert function always returns 0 or -1 (i.e. failed)
So can anyone please tell me what's wrong with it? Is it not a LZX compressed file? Does I use wrong decompress function? Or there is no way to decompress it at all?
I found quite a number of ROMs have compressed files in XIP, such as O2 XDA Stealth, ASUS P525, ASUS P535 etc... So if we can decompress it, we should have much more stable and useful ROMs.
Thanks for your help and reading my post, and I appologize for my poor English.

Scariping HTML - problems with non english characters

Hey guys
Really hope some friendly soul out there can help me.
Trying to build an app that uses DownloadStringAsync to download a HTML page. The problem is that Swedish characters (å, ä, ö) doesn't show up and just appear as a black diamond with a white questionmark in it.
{
"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 guess it ahs to do with unicode or the lack of unicode but have no clue on how to fix it. I'm really new to this.
Please help, thanks in advance.
Edit: Of course I had to spell the title wrong... should be scraping
Have you tried setting the encoding to Unicode?
WebClient wc = new WebClient ();
wc.Encoding = System.Text.Encoding.UTF8;
williammel said:
Have you tried setting the encoding to Unicode?
WebClient wc = new WebClient ();
wc.Encoding = System.Text.Encoding.UTF8;
Click to expand...
Click to collapse
Thank you for your response!
Yes, I have tried it but maybe not exactly the way you suggested. But it didn't help.
This is what I get when debugging:
calendarItems = "R�sta nu\r\n"
Only other thing which you probably tried if you typed that in is
WebClient wc = new WebClient ();
wc.Encoding = System.Text.Encoding.Unicode;
You should post this on the create.msdn.com forums. Since it's run by Microsoft there's Microsoft employees and other people who are very helpful.
Try the HTML Agility pack. The latest version on codeplex has a sample WP7 library, which I found works very well. It should make your scraping easier, plus it'll probably be more flexible around encoding.
http://htmlagilitypack.codeplex.com/
Yes, this works perfectly with Unicode characters. HTML scrapping made easy with this.
Can someone post up the pre-compiled version and a short tutorial on how to use it properly?

[MOD][APK] RE-MOD HDPI/XHDPI ThemeChooser Template CM9/CM10/CM10.1 *UPDATE 05/05/2013

{
"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"
}
Good Day Guys!!,,
Disclaimer:
I can't be held responsible if your device explode in your hands! Try it at your own risk!
I just want to share a zip patches for ROM ICS/JB enable HDPI/XHDPI theme chooser,,
I believe that some of our members in here still confused to set up DPI when they having problem/error
applying themes,,my point is.. just want to make our members in here more easy
when they hardly want to use any HDPI/XHDPI Theme
DOWNLOAD
http://d-h.st/xD0
Installation
* Copy downloaded ZIP file to your SD card
* Reboot to CWM/TWRP Recovery
* Select downloaded file
* Flash/Install = wait until finish
* Reboot. Done
>>After installation,,just apply any HDPI/XHDPI theme normally <<
>>No more seeing this msg <<
>>and after that, all HDPI/XHDPI theme can apply <<
*BIG THANKS TO
T-MOBILE
Reserved: R. I . P
TESTED AND WORKING
CM9/CM10
AOKP JB
work
Thread UPDATE
New template support CM10.1 JB 4.2.2
deleted.
maybe i was wrong.
Unrelated topics
nice work will try it later
dzolcp said:
What?? lol lost your imei?? you on stock rom?? support T-Mobile Theme Chooser?? this zip has nothing to do with your imei bro!!! last template is 9000 over download bro!! this is my new template!! none of user tell that they lost their imei?? imei??
you just post at the wrong thread and the THANKS BUTTON aren't visible to you :silly: n your head:
Of course i know and the THANKS BUTTON aren't visible to you :silly: n your head:
Click to expand...
Click to collapse
deleted.

[MOD][APK] RE-MOD HDPI/XHDPI ThemeChooser Template CM9/CM10/CM10.1 *UPDATE 05/05/2013

{
"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"
}
Good Day Guys!!,,
Disclaimer:
I can't be held responsible if your device explode in your hands! Try it at your own risk!
I just want to share a zip patches for ROM ICS/JB enable HDPI/XHDPI theme chooser,,
I believe that some of our members in here still confused to set up DPI when they having problem/error
applying themes,,my point is.. just want to make our members in here more easy
when they hardly want to use any HDPI/XHDPI Theme
DOWNLOAD
http://d-h.st/xD0
Installation
* Copy downloaded ZIP file to your SD card
* Reboot to CWM/TWRP Recovery
* Select downloaded file
* Flash/Install = wait until finish
* Reboot. Done
>>After installation,,just apply any HDPI/XHDPI theme normally <<
>>No more seeing this msg <<
>>and after that, all HDPI/XHDPI theme can apply <<
*BIG THANKS TO
T-MOBILE
Reserved for THANKS
Ah Nice =)
ICS_XD said:
Ah Nice =)
Click to expand...
Click to collapse
Thanks Master,,
Wish that you build a latest JB 4.2.2 for i9100g
Fly from my SNAPDDRAGON using XDA Premium
dzolcp said:
Thanks Master,,
Wish that you build a latest JB 4.2.2 for i9100g
Fly from my SNAPDDRAGON using XDA Premium
Click to expand...
Click to collapse
You gonna see a new thread may be today or day after today
AOKP/CM 4.2.2
Full Of MODS XD

[MOD] [LP] RE™ | RE-Xperia SmallAPPS Pro | Full Themed Material SmallApps

{
"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"
}
[/url][/IMG]
intro : hi guys i am back again withe new mod for xperia lollipop Device..Fully Material themed style and icons...
How To Install :
_Download pack 1
_unzip pack 1
_move the folders to system/apps
_now Download pack 2
_unzip
_move pack 2 folders to system/priv-app
_reboot
specifications :
_Full Material themed icons
_full themed z5 browser style
plz hit Thanks if you like my work
eliasba said:
[/url][/IMG]
intro : hi guys i am back again withe new mod for xperia Device..Fully Material themed style and icons...
How To Install :
_Download pack 1
_unzip pack 1
_move the folders to system/apps
_now Download pack 2
_unzip
_move pack 2 folders to system/priv-app
_reboot
specifications :
_Full Material themed icons
_full themed z5 browser style
plz hit Thanks if you like my work
Click to expand...
Click to collapse
Download :
pack 1 : https://drive.google.com/file/d/0BxxE7e4r-spvLXFBdXlOczB4N1E/view?usp=sharing
pack 2 : https://drive.google.com/file/d/0BxxE7e4r-spvTkVPZ2JpMkg2U1k/view?usp=sharing
[/url][/IMG]
Followed the instruction in the OP to the letter, caused bootloop to my rooted Z1C 14.6. Thanks anyway.

Categories

Resources