This update installs a binary battery percentage indicator. This is a particularly 'geeky' mod, and it requires some getting used to. I made it for fun, install it if you want to, or don't if you don't like it.
If there are any ROMs that you want me to make an update.zip for, let me know. Be advised though that this mode is specifically made for ROMs with black notification bars, although the battery icons don't have a background color, I can't imagine them being readable on white notification bars.
Changlog:
Added icons.zip as attachment (contains all the icons).
Added charging icons.
Crash course: reading binary numbers.
The battery indicator consists of 2 rows of 4 'LEDs', the top row represents the 10's the lower row the 1's. Binary numbers are read from right to left, in this order the bits represent the values 8, 4, 2, 1 or (2^i for i = 3 .. 0), because the top row are 10's their values are 80, 40, 20 and 10 respectively.
For example, the image below,
{
"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"
}
.
In this image the 4, 2 and 1 LEDs are on in the top row, representing (4 + 2 + 1) * 10 = 70. In the lower row only the 4 LED is on, representing 4 . Put this together and you get 70 + 4 = 74%.
Creating your own custom framework-res.apk
If you are not using AdamG's sensefroyo 1.0c chances are that the posted update.zip will land you a nice bootloop. If this is the case, you can modify your ROMs framework-res.apk. It's not that hard, just follow the steps below. Before you start you need the Android SDK (most notably adb), apktool, the attached icons.zip and ofcourse a rooted phone. (These instructions are for linux, but windows and mac instructions won't differ that much.)
Reboot your phone into recovery. Make sure you enter whatever custom recovery image you are using.
Execute:
Code:
adb shell mount /system
adb pull /system/framework/framework-res.apk
While executing the steps described below, make a nandroid backup.
Use apktool to unpack the .apk:
Code:
apktool d framework-res.apk
Unzip icons.zip and copy the files to the right directory:
Code:
unzip icons.zip
cp res/drawable-hdpi-v4/* framework-res/res/drawable-hdpi-v4/
cp res/drawable/* framework-res/res/drawable/
CD into the framework-res.apk directory and rebuild the apk:
Code:
cd framework-res/
apktool b
Push the new framework-res.apk found in the dist/ directory:
Code:
adb push dist/framework-res.apk /system/framework/framework-res.apk
.
Reboot phone.
Don't blame me if it goes wrong!
nice idea but i'd stick with the decimal battery for quicker reading although i love this kind of stuff
nice idea, but kind of useless since human beings operate on decimal system
Hi - sorry to be a killjoy - maybe I pushed it wrong, but this made my phone boot continuously (HTC white screen boot loop)
I booted into recovery and then used the following commands:
adb shell mount /system
adb pull /system/framework/framework-res.apk C:\AndroidBackup
adb push framework-res.apk /system/framework
adb reboot
let me know if I've missed something!
fatboygrim said:
Hi - sorry to be a killjoy - maybe I pushed it wrong, but this made my phone boot continuously (HTC white screen boot loop)
I booted into recovery and then used the following commands:
adb shell mount /system
adb pull /system/framework/framework-res.apk C:\AndroidBackup
adb push framework-res.apk /system/framework
adb reboot
let me know if I've missed something!
Click to expand...
Click to collapse
What rom are you using?
ah yes - my fault - I'm using Modaco R5 WIP - didn't notice it's only for v1.0c of the AdamG/Opendesire team froyo sense Rom
Any chance of getting a version that will work on Modaco / other roms etc?
stingerpl said:
nice idea, but kind of useless since human beings operate on decimal system
Click to expand...
Click to collapse
I'd hardly consider it useless, there are people who enjoy reading their numbers in binary.
Nice work blubber83, I'm sure there will be people on here who will love this
munkimatt said:
Nice work blubber83, I'm sure there will be people on here who will love this
Click to expand...
Click to collapse
Absolutely! Please create versions that will work on a few other (popular) Roms
Nice touch and idea, won't be using as I don't have the foggiest! Nice work though
stingerpl said:
nice idea, but kind of useless since human beings operate on decimal system
Click to expand...
Click to collapse
Speak for yourself. After 10 Years of Engineering, I see Hex or binary where it's not even intended.
nice idea, but kind of useless since human beings operate on decimal system
Click to expand...
Click to collapse
Speak for yourself. After 10 Years of Engineering, I see Hex or binary where it's not even intended.
Click to expand...
Click to collapse
What do you mean "speak for yourself"? I'm an engineering graduate also but I'm still pretty sure that human beings operate in decimal system. If this would not be true, you should not need any instructions on how to convert it back to dec. For me, using this is like making a cup of tea with your boxing gloves on. I just don't see the point.
stingerpl said:
What do you mean "speak for yourself"? I'm an engineering graduate also but I'm still pretty sure that human beings operate in decimal system. If this would not be true, you should not need any instructions on how to convert it back to dec. For me, using this is like making a cup of tea with your boxing gloves on. I just don't see the point.
Click to expand...
Click to collapse
Why do human's work on decimal? Because that's the number system we are first taught as a child. When you have been using a different number system almost as long as another, the distinction is small.
If you're fluent in several languages you'll understand exactly what I mean.
Hence I said "Speak for yourself", it was a light hearted joke, it is of course true to most humans, but there is no reason binary should be much harder than decimal if you use it enough.
I will make a Super Circle battery Mod with binary number ...
... in version Z !!!
I've attached a new version with charging animation. Also posted some instructions on making your own mod for different ROMs then sensefroyo.
Related
Now that we have Root and the amazing recovery tool... I decided it was time to test things out. No we dont have MetaMorph, but until then... The "old fashioned" way will work. I pulled the framework, made a quick modification to the BATTERY icons and pushed it back... and BAM!! Blue battery!
So far i see no adverse effects... so i will be pushing my fully themed Framework-res.apk to my INC later this evening. Proof? See pic...with BLUE battery! Thats just the start of my theme!
{
"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] Uploaded with ImageShack.us[/IMG]
Awesome! What is the launcher you're running there?
SimonTuffGuy said:
Awesome! What is the launcher you're running there?
Click to expand...
Click to collapse
ADW Launcher...
do the files require unsigning and signing like in winmo? sorry, i was well versed with winmo themeing but am new to android. i'd love to start customizing though.
any links on where to learn what files contain what, how to extract em, etc.? thanks
MrGoodCat said:
do the files require unsigning and signing like in winmo? sorry, i was well versed with winmo themeing but am new to android. i'd love to start customizing though.
any links on where to learn what files contain what, how to extract em, etc.? thanks
Click to expand...
Click to collapse
All the images are located within framework-res.apk, But there are several other places that you can edit xmls to make further changes. you can extract them directly from there, and replace them using 7zip without need to sign the apk. The most common are found in /res/drawable hdpi/
Before experimenting i would suggest reading up on Patch 9 files. Those require more than just editing the png.
Drukan said:
All the images are located within framework-res.apk, But there are several other places that you can edit xmls to make further changes. you can extract them directly from there, and replace them using 7zip without need to sign the apk. The most common are found in /res/drawable hdpi/
Before experimenting i would suggest reading up on Patch 9 files. Those require more than just editing the png.
Click to expand...
Click to collapse
awesome! thank you. can't wait to dive in. this is why i love smartphones, let the modding begin!
has anyone dumped the stock framework-res.apk, or do i need to pull that from my phone?
MrGoodCat said:
awesome! thank you. can't wait to dive in. this is why i love smartphones, let the modding begin!
has anyone dumped the stock framework-res.apk, or do i need to pull that from my phone?
Click to expand...
Click to collapse
its a simple pull...plug in phone (ensure usb debugging is ENABLED)
open cmd prompt:
adb pull /system/framework/framework-res.apk C:\mydirectory\
anyway to remove the AM/PM from the time?
i like the blue battery icon by the way.
jasonb1985 said:
anyway to remove the AM/PM from the time?
i like the blue battery icon by the way.
Click to expand...
Click to collapse
To my knowledge that requires editing the Services.jar file. There are scripts out there for editing this file, but the short answer for now is NO. (unless you're a java guru)
command is *adb push framework-res.apk /system/framework* right?
Sent from my ADR6300 using Tapatalk
tcberg2010 said:
command is *adb push framework-res.apk /system/framework* right?
Sent from my ADR6300 using Tapatalk
Click to expand...
Click to collapse
1. Always do a nandroid backup first...
2. push framework-res.apk file to root of sdcard
3. boot phone into recovery
4. mount /system and /sdcard from recovery
5. open adb shell and type:
busybox cp -R /sdcard/framework-res.apk /system/framework
6. reboot
Enjoy!
touchpro247 said:
1. Always do a nandroid backup first...
2. push framework-res.apk file to root of sdcard
3. boot phone into recovery
4. mount /system and /sdcard from recovery
5. open adb shell and type:
busybox cp -R /sdcard/framework-res.apk /system/framework
6. reboot
Enjoy!
Click to expand...
Click to collapse
I concur with ALWAYS do a back up...
no need to push file to SDCard though, or use busybox cp
Just push it directly from its location.
Reboot to recovery...
Mount /system (under partitions menu)
open cmd prompt and type:
adb push (file location) /system/framework/framework-res.apk
example :
adb push c:\android\framework-res.apk /system/framework/framework-res.apk
does it change to orange/red as the battery gets lower?
Goldeneye877 said:
does it change to orange/red as the battery gets lower?
Click to expand...
Click to collapse
Mine does...
They can be edited to change to any color you want!!
FYI i will be sharing my modded framework-res.apk shortly, working out a few things. My version will change ALL status icons, battery meter, signal bars, and a whole lot more (basically everything GREEN)to the Blue you see in the battery in the pic.
Having a lil trouble....
Ok so i managed to edit almost everything in framework, (still working on the.9.pngs, they take sooo much time)..... But im having an issue...
Hopefully some one here can help me solve this. Unlike the moto, i cant seem to get the signal meter, or the 3g/1x/etc icon to change. all other icons are acting as they should but these stay the same. Ive re-copied them, and pushed the apk 3 times...
Anyone with ideas...
jasonb1985 said:
anyway to remove the AM/PM from the time?
i like the blue battery icon by the way.
Click to expand...
Click to collapse
Would love to remove the time completely.
Drukan said:
Ok so i managed to edit almost everything in framework, (still working on the.9.pngs, they take sooo much time)..... But im having an issue...
Hopefully some one here can help me solve this. Unlike the moto, i cant seem to get the signal meter, or the 3g/1x/etc icon to change. all other icons are acting as they should but these stay the same. Ive re-copied them, and pushed the apk 3 times...
Anyone with ideas...
Click to expand...
Click to collapse
They may be inside the com.htc.resources.apk also. Use Root Explorer to check.
touchpro247 said:
They may be inside the com.htc.resources.apk also. Use Root Explorer to check.
Click to expand...
Click to collapse
Thanx, checkin it out now...
YES THEY ARE, y i didnt think to look there... i dont know... but YOU sir... ROCK!
daftlush said:
Would love to remove the time completely.
Click to expand...
Click to collapse
Again, thats part of the Services.jar ... and i know little to nothin of java.
Soon enough the smart guys will have a script to edit it!
I'm going to remove the gps icon. Unless the OP does it first. I only want to see it when I turn it on.
This is a copy/paste from here.
This is a port of Manup456's NexTheme for the Motorola Droid X. It is meant to be run on the .604 update to Android 2.1.
This installation will require some work, though it is not too difficult. You just need to follow the instructions.
DISCLAIMER: I am not responsible for anything that may go wrong in this process - Though with the SBF file now, it is almost impossible to brick a Droid X.
That being said, I didn't even need to restore while I was porting and testing this, so there should be minimal chance of any major mess-ups.
Instructions:
1. Download 'MetaMorph' from the market. Run it once and grant it root permissions.
2. Download the following file:
NexTheme.zip
3. Extract the file. Put the MM.zip file in sdcard/AndroidThemes and the other two in /sdcard/nextheme
4. We will first need to push framework-res.apk and services.jar to the system. Do not use root explorer to copy the files! Open up your terminal emulator or adb (preferably) and type:
Code:
su
mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system
cp /sdcard/nextheme/framework-res.apk /system/framework/
reboot
after this reboot, you should notice a different status bar, but the clock and time will still be black.
open up terminal emulator (or adb) again and this time we'll push services.jar
Code:
su
mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system
cp /sdcard/nextheme/services.jar /system/framework/
reboot
The following reboot will take between 3-5 minutes!
Now the clock and time, etc. will be white.
5. Now, fire up MetaMorph and choose unzip/extract new theme, select nextheme, and let it do it's thing extracting. Once it's done extracting, you can apply all the themes (for the apps), or apply only the ones you want.
6. Enjoy your new theme
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"
}
Here are some of MY screenshots (notice what's different in the pulldown menu?)
do you have to use the status bar and services.jar provided or can you use any? i really like teenfaces ver. 9 but also would love this theme with it
xDanVitox said:
do you have to use the status bar and services.jar provided or can you use any? i really like teenfaces ver. 9 but also would love this theme with it
Click to expand...
Click to collapse
From what I understand the only change to the services.jar is so that the text shows up white. Other than that everything else is changed in the framework-res.apk (aside from the settings icons and such).
Idk but after loadin this theme my gmail closes lol
I have had ZERO problems with my Gmail and I used it all day long.
hacku said:
I have had ZERO problems with my Gmail and I used it all day long.
Click to expand...
Click to collapse
Weird...ok when I open gmail, everything is fine. Now if I start scrollin down and lettin emails to load, all of a sudden it closes lol
hacku said:
Here are some of MY screenshots (notice what's different in the pulldown menu?)
Click to expand...
Click to collapse
How did you get the Android in your pull down menu?
xDanVitox said:
do you have to use the status bar and services.jar provided or can you use any? i really like teenfaces ver. 9 but also would love this theme with it
Click to expand...
Click to collapse
I was wanting to do the same thing, but don't want to deal with going into a bootloop in the chance it does cause that. Does anyone know if this would be OK?
phoenx06 said:
How did you get the Android in your pull down menu?
Click to expand...
Click to collapse
The Android in the pull down is great! Can someone post some instructions for us to put that on as well?
phoenx06 said:
How did you get the Android in your pull down menu?
Click to expand...
Click to collapse
Irishpride said:
The Android in the pull down is great! Can someone post some instructions for us to put that on as well?
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?p=7597467#post7597467
Get this error when I atttempt to launch the latest paid verision of MetaMorph...
Anyone ever seen this? Is so, what's the fix, I've searched all over the place!
also i dont see the "paid apps" tab on the market anymore, and my market is xtremely slow! lol
lamaravish said:
also i dont see the "paid apps" tab on the market anymore, and my market is xtremely slow! lol
Click to expand...
Click to collapse
Don't know what to tell you man, but there's definitely something wrong with your phone.
Thank god for SBF...
hacku said:
Don't know what to tell you man, but there's definitely something wrong with your phone.
Thank god for SBF...
Click to expand...
Click to collapse
I'm not having any problems either.
Coolest so far
This is the coolest thing a noob like me has learned for my X. Please keep these coming. And if there are any other mods that I need to learn, please PM me or share openly. I am so happy I switched from Blackberry to Android now that I have learned some of the tricks.
Will this theme work in 2.2? Because I want it lol. I'm too lazy to go and single handedly edit all of the images xD
evilkal said:
Will this theme work in 2.2? Because I want it lol. I'm too lazy to go and single handedly edit all of the images xD
Click to expand...
Click to collapse
No it wont. Framework is different in Froyo - some have tried and bricked their phones.
srh.pres.usx said:
No it wont. Framework is different in Froyo - some have tried and bricked their phones.
Click to expand...
Click to collapse
Well that's depressing lol. I was going to go edit all of the images and stuff myself but it'd take forever and more work than I'd like to do atm lol.
so i'm assuming this is no-go on 2.2? i got boot loop after pushing first file.
srh.pres.usx said:
No it wont. Framework is different in Froyo - some have tried and bricked their phones.
Click to expand...
Click to collapse
well i really wish i hadn't tried this at the same time you posted the warning. hehehe.
i certainly hope i'm not bricked. downloading the files to sbf now. will post results.
1st post should REALLY be updated with that warning.
Coming Soon:
- Droid X Status Bar: CANCELLED
___________
HTC SENSE Framework-res.apk
Please donate if possible. I really want to buy a pouch for my X10
{
"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"
}
DOWNLOAD LINK v.001 HTC SENSE Status Bar for X10 (framework-res.apk only) [November 26th]
http://www.4shared.com/file/xHE4eMTA/framework-res.html
___________
Android STOCK White Status Bar
Please donate if possible. I really want to buy a pouch for my X10
Donation Link:
https://www.paypal.com/cgi-bin/webs...m&item_name=Donation+XDA+Forums&no_shipping=1
DOWNLOAD LINK v.005 Package (WITH ALL THE FILES YOU NEED TO INSTALL)
http://www.4shared.com/file/_7UKHvms/Stock_Status_Bar_for_X10_by_Dk.html
DOWNLOAD LINK v.005 (Framework-res.apk ONLY) [November 21th]
http://www.4shared.com/file/BzAtGX4r/framework-res.html
DOWNLOAD LINK v.004 [November 20th]
http://www.4shared.com/file/6qyQdtVQ/framework-res.html
DOWNLOAD LINK V.003 [November 19th]
http://www.4shared.com/file/v37FxfTp/framework-res.html
DOWNLOAD LINK V.002 [November 18th]
http://www.4shared.com/file/fKigopxT/framework-res.html
Please donate if you like the work to keep it alive for more upcoming "flavors"
___________
Installation:
Download v.005 Package (will all the files you need inside)
Extract to wherever you want
Plug in your Xperia X10 with USB Debugging enabled
Run Installer.cmd
Enjoy!
___________
ANDROID 2.2 STOCK ICONS
Android 2.2 Stock Icon in High Quality.
This is to get the stock look for your Android Smartphone that is running a specific UXP. (Like Sony Ericsson, HTC Sense, Motoblur, etc)
The icons are in a .rar archive. Extract to your phone's SD Card, navigate to your Home Launcher on your Android Device (Launcher Pro or ADW Launcher preferred) Long press on desktop, select shortcut > application, select your desired app, change icon. Voila!
DOWNLOAD LINK
http://www.4shared.com/file/xuClPYgK/Android_22_Stock_Icon.html
Cyanogen Mod Boot Screen Animation
Cyanogen Mod's Boot screen Animation.
Tested and working on Sony Ericsson Xperia X10 running Android 2.1
DOWNLOAD LINK:
http://www.4shared.com/file/BJrGIdCY/bootanimation.html
Installation:
1- Copy bootanimation.zip to your SD Card
2- Get Root Explorer, navigate to your SD Card, Copy bootanimation.zip
(You need root)
3- Go back to the root of the phone, go to System/media, Mount R/W
4- Delete the existing bootanimation.zip, then paste the one you copied from your SD Card earlier.
5- Make sure it has the same permission.
6- Reboot, enjoy your new boot animation !
___________
Always follow on www.TechRemixed.com (my website) all the progress is always reported there first
Please donate if you would like to see farther development =D
Donation Link:
https://www.paypal.com/cgi-bin/webs...m&item_name=Donation+XDA+Forums&no_shipping=1
For change logs go to my website, i made a special sub domain for it.
www.mythemes.techremixed.com
Did you forget you started this thread - http://forum.xda-developers.com/showthread.php?t=810794
Yeah but thats old.. its for 1.6... now its 2.1..... so....
Sent from my X10i using XDA App
Yeah, true enough. It's a whole different kettel of fish now - we just need to edit the xml's (decompiling/recompiling with apktool) and drag them into the framework now.
I just had a bit of a play... I managed to change the color of the provider text by editing res/layout/status_bar_expanded.xml. Changing status_bar_icon.xml didn't seem to have any effect but I did add some alpha. I will have another look tomorrow and post what I find out in my themes reference thread.
_calum_ said:
Yeah, true enough. It's a whole different kettel of fish now - we just need to edit the xml's (decompiling/recompiling with apktool) and drag them into the framework now.
I just had a bit of a play... I managed to change the color of the provider text by editing res/layout/status_bar_expanded.xml. Changing status_bar_icon.xml didn't seem to have any effect but I did add some alpha. I will have another look tomorrow and post what I find out in my themes reference thread.
Click to expand...
Click to collapse
Nice hope u can get the clock to be black and the status bar to be default style thanks alot
so anyone? much appreciated if someone has it thanks
Nobody?? Common...
Sent from my X10i using XDA App
Hey man,
just got the last piece of the puzzle today. I've posted my findings in a new section in the themes reference sticky. So now we just have to wait for those artistic types to get to work on thier images etc.
I'd get onto something, but I'm to busy flashing my phone
_calum_ said:
Hey man,
just got the last piece of the puzzle today. I've posted my findings in a new section in the themes reference sticky. So now we just have to wait for those artistic types to get to work on thier images etc.
I'd get onto something, but I'm to busy flashing my phone
Click to expand...
Click to collapse
thats cool news dude thanks!
I reckon you want to keep an eye on chewitts Dark10 theme. He's had a load of requests for a white theme and I think it's in the works...
_calum_ said:
I reckon you want to keep an eye on chewitts Dark10 theme. He's had a load of requests for a white theme and I think it's in the works...
Click to expand...
Click to collapse
Yes but i want stock stock.. not custom battery icon and stuff
Sent from my X10i using XDA App
Just been playing a bit with text etc. Might try and clean this up later in the week.... there's a lot of icons though (~130)
_calum_ said:
Just been playing a bit with text etc. Might try and clean this up later in the week.... there's a lot of icons though (~130)
Click to expand...
Click to collapse
Woow thats awesome is there any way so that you can use the stock stuuffs
Lol im sooo into stock xD
Sent from my X10i using XDA App
I'm just working on a little program to remove the background on all the stock icons - then I can just darken them up a bit and it should look pretty decent...
Has anyone here modded framework-res.apk located in system/framework?
I'm doing what is wrote in this guide, but phone dosen't boot then. I had to flash it with SEUS.
Here is what i do. Am i missing or wronging something?
Code:
Step 1:
Connect phone to pc, enable usb debugging and open adb. Type:
adb pull /system/framework/framework-res.apk framework-res.apk
That will pull your framework-res.apk to whatever folder is displaying in your command line.
Step 2:
Find the framework-res.apk on your hard drive, right click and open with 7zip.
Step 3:
Use png's here or create your own and dump into the appropriate folder within framework-res.apk.
Step 4:
When you are done editing the files open up adb and type the following command:
adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock2 /system
adb push framework-res.apk /sdcard/framework-res.apk
adb shell dd if=/sdcard/framework-res.apk of=/system/framework/framework-res.apk
That will put the new framework-res.apk on your phone. It should automatically reboot (if not reboot it) and your changes should be applied!
When running the script above you can replace framework-res.apk with whatever you want. For example, Timescape.apk
Remember, it is CASE sensitive I made this problem many times)
Check out this thread:
http://forum.xda-developers.com/showthread.php?t=834806
There's a few things you could be doing wrong, the one that springs to mind is if your doing some xml mods and not adding resources.arsc to the framework in the proper manner.
_calum_ said:
Check out this thread:
http://forum.xda-developers.com/showthread.php?t=834806
There's a few things you could be doing wrong, the one that springs to mind is if your doing some xml mods and not adding resources.arsc to the framework in the proper manner.
Click to expand...
Click to collapse
Thanks.
I resolved all my problems.
It depended on unsecure shell.
All worked fine.
Thanks again
Thanks to this little beauty I got all of the icons done in one shot .
I have attached the framework with the only modification being the white status bar and dark icons (and the fact that you can see the clock, of course ).
Don't forget to unzip the framework, don't just rename it
woot woot, pretty awesome, nice work indeed....now we actually need a completely white theme.....
Chewitts on the case I just did this cause I could
{
"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 designed and made this battery icon for x10. It can tell you your battery status as accurate as 1% but it needs some brain work. You've to calculate the percentage by yourself. It's a bit complicated but might save your money for paying brain training on a DSi =)
Wish you like.
ATTENTION: Other people might not understand your phone battery status. This may cause a delayed battery charging =)
http://www.megaupload.com/?d=RDNKA8LL
Wallpaper credit to: The Art of Currie.
Installation:
Make sure your phone is rooted and have busybox installed. Make sure you have ADB on your PC and relevant X10 drivers installed (Sorry I don't know mac system). Here is a example for installation using adb.exe.
1.Download the framework-res.apk file from the MU link.
2.Copy framework-res.apk to to your X10's /sdcard
3.Connect your X10 to a PC, make sure USB debugging is enabled. Run "cmd"
4.Locate your adb.exe.
-adb shell
-su (make sure you give super user permissions (su) on your x10 side)
-mount -o remount,rw -t yaffs2 /dev/block/mtdblock2 /system
-dd if=/sdcard/framework-res.apk of=/system/framework/framework-res.apk
5.Your phone will restart and that's it.
possible to get this in black or transparent status bar? looks way better then those circle battery ones!!
can you give me a link or a sample picture of the black or transparent status bar? thanks.
Oh god, this one is sooooo sexxy
I think I'll apply this on my phone immediately
Very nice job
BTW, how much time did you need to figure this out? just curious
Make sure your phone is rooted and have busybox installed. Make sure you have ADB on your PC and relevant X10 drivers installed (Sorry I don't know mac system).
1.Download the framework-res.apk file from the MU link.
2.Copy framework-res.apk to to your X10's /sdcard
3.Connect your X10 to a PC, make sure USB debugging is enabled. Run "cmd"
4.Locate your adb.exe.
- adb shell
-su (make sure you give super user permissions (su) on your x10 side)
-mount -o remount,rw -t yaffs2 /dev/block/mtdblock2 /system
-dd if=/sdcard/framework-res.apk of=/system/framework/framework-res.apk
5.Your phone will restart and that's it.
I can finished it may be in 2-3 minutes =)
Nice Battery Icons
Just a little bug on status background
check second screenshot
Before apply this mod everything was OK, but after apply this mod even if I reinstall original framework this bluetooh call icon persist on background
Hi Alejandrissimo:
May I confirm your firmare version number? It looks like you've applied this to a .504 firmware. This file is only for .24 firmware.
Hi, I must say that i really appreciate your work, but I'm in the same case as Alejandrissimo. Too bad for me I know, didn't check my version before.
Could you tell us how to revert to normal ? I tried to upload the original framework-res with the same procedure but i didn't work..
Many thanks
Did you use adobe illustrator to design this mod?
And if it's so, did you start creating a 38x38 pixel document or larger and then resized?
thibprod said:
Hi, I must say that i really appreciate your work, but I'm in the same case as Alejandrissimo. Too bad for me I know, didn't check my version before.
Could you tell us how to revert to normal ? I tried to upload the original framework-res with the same procedure but i didn't work..
Many thanks
Click to expand...
Click to collapse
It happened before because I definitely noticed this problem with different firmware version in this forum. Can you try the mod for .504 version?
EDIT:
Yes, I found it here: http://forum.xda-developers.com/showpost.php?p=10295998&postcount=154
Can you try the Reboot mod for .504?
sathurnn said:
Did you use adobe illustrator to design this mod?
And if it's so, did you start creating a 38x38 pixel document or larger and then resized?
Click to expand...
Click to collapse
This work is done by using adobe photoshop CS4. Yes you're right it's 38*38 pixel. I got the battery frame from the original stock icon and then calculated the squares needed inside frame on pixels. Therefore no resize involved.
shvyue said:
can you give me a link or a sample picture of the black or transparent status bar? thanks.
Click to expand...
Click to collapse
transparent: http://androidthemes.webnode.com/album/photo-gallery-transparent-status-bar/#cap201002020311-jpg1
black status bar: http://forum.xda-developers.com/showthread.php?t=737778 (see the dark bar)
I just noticed that this is for .24 only and not .504 =(
pyro224 said:
transparent: http://androidthemes.webnode.com/album/photo-gallery-transparent-status-bar/#cap201002020311-jpg1
black status bar: http://forum.xda-developers.com/showthread.php?t=737778 (see the dark bar)
I just noticed that this is for .24 only and not .504 =(
Click to expand...
Click to collapse
I will have a look. I can make a .504 framework-res.apk but as I don't have that firmware installed, dare you try? =)
Here's one with dark status bar. I've modified other icons to fit the dark bar as well. It's for the .504 version but I've no chance to test it. If you want just try it.
-backup your original framework-res.apk
-install xrecovery
-do the modification
If failed, you can restore your original one using xrecovery.
http://www.megaupload.com/?d=TYYQU1SA
I just wanted to give you guys who aren't proficient with modding themselves a chance to change the lockscreen and taskbar clock font (which I personally don't like) to in this case match the rest of the honeycomb fonts.
The end result of this quick guide:
{
"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"
}
First you will need to have adb set up, if you don't know how to set up adb follow the guide http://theunlockr.com/2009/10/06/how-to-set-up-adb-usb-drivers-for-android-devices/ to get adb up and running.
Requirements:
adb
Asus PC Sync Software link
USB Debugging turned on in settings
a .ttf font file (only required if you want another font than used in the guide)
Step one: pulling the original clock files for back up
We'll start simple, the idea here is that if you ever want to revert back to the original font, you will have a back up of the font just in case. Lucky for you I will however also be providing a back up of the original font files at the end of this post.
Open up cmd (or terminal on OSX).
navigate to your android-sdk\tools folder through the terminal (if you do not know how to do this check the adb set up guide linked earlier in this post).
Now to allow modification of the system files we will enter the command "adb remount".
Now we will pull the font files which are located within /system/fonts/ by entering these 3 commands: "adb pull /system/fonts/AndroidClock.ttf", "adb pull /system/fonts/AndroidClock_Highlight.ttf", "adb pull /system/fonts/AndroidClock_Solid.ttf"
On your computer go to the android-sdk/tools folder and move the AndroidClock, AndroidClock_Solid and AndroidClock_Highlight to wherever you want to store these (these are the original back up) and make sure to remove them from the android-sdk\tools folder.
--------------------------
Step two: replacing the original clock font with your own
In this step we will pull the font used for all the other type in honeycomb called DroidSans and replace the original clock font files with this font as to fool honeycomb into thinking it is actually the original font.
while having adb open, enter the command "adb pull /system/fonts/DroidSans.ttf".
Now navigate to your android-sdk\tools folder again and make 3 copies of DroidSans.ttf in the tools folder.
Name one of the files AndroidClock, name another AndroidClock_Solid, and name the last AndroidClock_Highlight.
now go back to adb and enter these 3 commands: "adb push AndroidClock_Solid.ttf /system/fonts/", "adb push AndroidClock.ttf /system/fonts/", "adb push AndroidClock_Highlight.ttf /system/fonts/".
Reboot your transformer and voila you're done.
If you want to replace the lockscreen font with your own font and not DroidSans, simply skip bullet point 1 and 2 of step 2 and copy your own .ttf font file to your android-sdk\tools folder and make 3 copies of that.
I hope you guys enjoy this guide, and if you have any suggestions as how to simplify this guide even further, feel free to post your suggestion.
EDIT: the original font files are in the .zip file!
Don't forget to remount /system as rw ("mount -o rw,remount /system") so you can modify the font files.
N23 said:
Don't forget to remount /system as rw ("mount -o rw,remount /system") so you can modify the font files.
Click to expand...
Click to collapse
adb remount is easier
I cant find the asus pc sync. Here or on asus website
mike6200 said:
I cant find the asus pc sync. Here or on asus website
Click to expand...
Click to collapse
Go to the transformer product page on the asus website then to the download tab (http://www.asus.com/Eee/Eee_Pad/Eee_Pad_Transformer_TF101/#download), select your OS and it should be under utilities.
Here's a screenshot of the clock as well.
need this wallpaerp
please give me this wallpaper
ithunter said:
please give me this wallpaper
Click to expand...
Click to collapse
https://dl-web.dropbox.com/get/iPad/02397_starrynight_1024x1024.jpg?w=a2f6070e
Here! But i only have the iPad resolution...
I forgot where I got it from sorry ):
thegorde said:
https://dl-web.dropbox.com/get/iPad/02397_starrynight_1024x1024.jpg?w=a2f6070e
Here! But i only have the iPad resolution...
Click to expand...
Click to collapse
is it possible to load it up somewhere else, cause I cant get it on Dropbox.. would be nice
HamSummit said:
is it possible to load it up somewhere else, cause I cant get it on Dropbox.. would be nice
Click to expand...
Click to collapse
Attached... Found it on Google.
THANKS!!!
Those fonts were not cool! Not only it looks great but I learned how to change fonts!
Thanks again! (Thanks button clicked)
Q.Entity said:
THANKS!!!
Those fonts were not cool! Not only it looks great but I learned how to change fonts!
Thanks again! (Thanks button clicked)
Click to expand...
Click to collapse
Glad to have helped
Thanks for the guide...will try now
thanks
for wallpaper
HamSummit said:
is it possible to load it up somewhere else, cause I cant get it on Dropbox.. would be nice
Click to expand...
Click to collapse
Sure, here it is!
Very well written guide, just one question does the tablet need to be rooted to change fonts?
I assume that the clock font provided here is the same font as the other text on the home page?
The only question I have is, can I change the colour of the font as well? I'd like it to have the same colour as the buttons. It would also be interesting to change the colour of the wifi and battery indicator. Even better if that could change depending on the level! So for example, when battery and wifi are indicating low(er), they change to yellow/orange/red progressively. I guess this is possible but would require some additional programming to link to different graphics/icons (assuming the software utilises a lookup table approach, rather than logical equations...)
ksporry said:
I assume that the clock font provided here is the same font as the other text on the home page?
The only question I have is, can I change the colour of the font as well? I'd like it to have the same colour as the buttons. It would also be interesting to change the colour of the wifi and battery indicator. Even better if that could change depending on the level! So for example, when battery and wifi are indicating low(er), they change to yellow/orange/red progressively. I guess this is possible but would require some additional programming to link to different graphics/icons (assuming the software utilises a lookup table approach, rather than logical equations...)
Click to expand...
Click to collapse
you'd have to edit the image files in the framework files, which is a whole lot more complicated than this.
SonicTab said:
Very well written guide, just one question does the tablet need to be rooted to change fonts?
Click to expand...
Click to collapse
Anything that has to do with modifying the /system folder requires root, so yes.