DroidForums.net is the original Verizon Android Forum! Registered Users do not see these ads. Please Register - It's Free!
Page 1 of 3 1 2 3 LastLast
Results 1 to 10 of 23

Thread: Theme Progress Log / How To

  1. Droid
    sxtnitehawk's Avatar
    Member #
    111562
    Join Date
    Aug 2010
    Posts
    36
    Phone
    Droid 1
    #1

    Theme Progress Log / How To

    This thread will serve as a general How To and other information for making your own custom themes.

    First off, from my own personal experience, the most sure fire way for your changes to take effect is to use an update.zip file. This one was provided by theBowers and does in fact work. To use it, use 7zip to open it, and put your files inside it in their respective location. Most of what I will be discussing here will all be contained within framework-res.apk which resides in /system/framework/ on your phone (and thus should be as well in your update.zip when you're done)

    http://www.droidforums.net/forum/att...eme_update.zip

    First thing I changed was the battery graphics. These, along with 99% of the other graphics for the phone are located in framework-res.apk/res/drawable-hdpi-v4/. They are files stat_sys_battery_0 through stat_sys_battery_100 (unplugged graphics) and files stat_sys_battery_charge_anim0 through stat_sys_battery_charge_anim5. Also there is stat_sys_battery_unknown but the odds of seeing that is slim...

    The top status bar is statusbar_background.9.png and is a stretched gradient. whatever you do with this file will stretch the whole way across...so forget about the nice fancy (yet tiny) designs you can do...cause itll get really distorted.

    When you open the notification menu, the first line where your carrier's name is located, is also a stretched gradient, filename status_bar_header_background.9. This is even smaller than the above file...so it's stretched even a lot more.

    Keep in mind, if you want to make colors dark, you have to change everything else in the top status bar or it will be very hard to see...

    All of my modified graphics can be found here: http://s803.photobucket.com/albums/y...eme/?start=all

    How to pull, change, and push the framework from/to your phone:

    Once you've downloaded and installed the Android SDK and 7zip, create a new folder on your computer for your framework. We're going to pull the framework off the phone, extract the files from it (or using APK Manager you can decompile it), and edit some of the images...

    open up a command prompt and navigate to the tools folder in the SDK and run "adb pull /system/framework/framework-res.apk" without quotes. This will pull the framework file off the phone and onto your computer.

    Next, move the apk to your new folder, make a copy of it and rename it framework-res.apk.bak (so you have a backup in case anything happens).

    Using 7zip, open and extract the archive to your new folder (or use APK Manager to decompile it so you can modify the XML files too).

    once extracted, you can play around with the graphics for the framework easily. You can download any of the images I've done so far or make your own. To change the images just overwrite the existing ones in the directory "res/drawable-hdpi". Once you have done that, open the apk again in 7zip and navigate to the folder "res/drawable-hdpi" inside the archive. drag and drop your new images from the extracted folder into the archive to overwrite them. Once done, back out of the archive and open the theme_update.zip archive, go to "system/framework", drag and drop the modified framework-res.apk file into the archive. back out of the archive and close it.

    Now you're ready to upload back to your phone again...

    you can either turn on USB storage and drop the update file onto your sd card or use the sdk and push it onto your sd card using "adb push theme_update.zip /sdcard/theme_update.zip

    Now from there just reboot the phone into recovery, and install the theme_update.zip file. By now you should already be running SPRecovery or Clockworkmod Recovery.

    Reboot your phone and enjoy the changes
    Last edited by sxtnitehawk; 09-08-2010 at 10:59 AM.
  2. Sponsor
    DF Advertising
    Join Date
    Nov 2008
    Location
    DroidForums.net
     
     
     
     
  3. Theme Developer
    JsinLegacy's Avatar
    Member #
    55112
    Join Date
    Apr 2010
    Posts
    355
    Phone
    Enter Current Phone Model Here
    DroidForums.net Theme Developer
    Premium Member
    #2
    **Sig content not allowed**
  4. Droid
    sxtnitehawk's Avatar
    Member #
    111562
    Join Date
    Aug 2010
    Posts
    36
    Phone
    Droid 1
    #3
    That does have good information, but also incomplete...

    I'll try to fill in the blanks as far as the other graphics and such are.
  5. Senior Droid
    Schoat333's Avatar
    Member #
    84840
    Join Date
    Jul 2010
    Posts
    121
    Phone
    Droid Charge (RIP OG Droid)
    #4
    Can't wait to read more.

    Thanks for taking the time to make this thread.

    I am interested in making my own themes, and have a pretty good understanding of how to do it, but some guide lines for what will work, and what wont would be nice to see.
  6. Droid
    sxtnitehawk's Avatar
    Member #
    111562
    Join Date
    Aug 2010
    Posts
    36
    Phone
    Droid 1
    #5
    Small update....

    Havn't had time to play much the past couple days since i pulled a 15hr and 19hr work days...good for the paycheck...bad for the social life...lol

    ok so I made another small change to the status bar icons... I changed the Status bar to solid black so I put a white border around most of the icons to make them easier to see. Now I just need to find where the color is stored for the date and time...
  7. Droid
    sxtnitehawk's Avatar
    Member #
    111562
    Join Date
    Aug 2010
    Posts
    36
    Phone
    Droid 1
    #6
    I found it...but now I gotta figure out how to change it... There's other things that use the same color (in that...there's a reference to the color in colors.xml in the values folder) so I have to figure out how to change whats in status_bar.xml in the layout folder... This isnt proving to be easy as the section I need to edit is encoded and not plain XML. Every time i've tried decoding and encoding has failed to work so far...

    For the sake of keeping a good log... in status_bar.xml there's this:

    Code:
    <com.android.server.status.DateView  android:textSize="16.0sp" android:textStyle="bold"  android:textColor="?textColorPrimaryInverse" android:gravity="left|center" android:id="@id/date"  android:background="@drawable/statusbar_background" android:paddingLeft="6.0px"  android:paddingRight="6.0px" android:layout_width="wrap_content"  android:layout_height="fill_parent" android:singleLine="true" />
    what needs to be changed is "?textColorPrimaryInverse". it can be changed to a specific color code using the typical #AARRGGBB code but the file i have to edit is encrypted.....
    Last edited by sxtnitehawk; 09-07-2010 at 01:28 PM.
  8. Droid
    sxtnitehawk's Avatar
    Member #
    111562
    Join Date
    Aug 2010
    Posts
    36
    Phone
    Droid 1
    #7
    trying to use apktool to compile the xml back to binary......but not working...

    ugh
  9. Theme Developer
    kook's Avatar
    Member #
    20945
    Join Date
    Dec 2009
    Posts
    2,041
    Liked
    13 times
    Twitter
    KookDoes
    Phone
    Droid Bionic
    DroidForums.net Theme Developer
    Premium Member
    #8
    Try apk manager....it's much easier.
    Search "kookahdoo" on the market for my themed apps.
  10. Droid
    sxtnitehawk's Avatar
    Member #
    111562
    Join Date
    Aug 2010
    Posts
    36
    Phone
    Droid 1
    #9
    APKManager uses APKTool...

    The one time i tried to build i got a bunch of errors.

    All I really need is something that can convert single files from XML to binary...that would suit me perfectly since I only edit 1 file at a time...

    If anyone knows of something like this, please, share

    I updated some more images and i'm making more tonight. I'll put up a folder on my photobucket so people can see/download them for their own use if they want.
  11. Droid
    sxtnitehawk's Avatar
    Member #
    111562
    Join Date
    Aug 2010
    Posts
    36
    Phone
    Droid 1
    #10
    Here's what I have so far...

    MotoDroid ReTheme pictures by mattcresto - Photobucket

    You can check back there anytime for updated images...

    They are best suited against a dark or black background.
Page 1 of 3 1 2 3 LastLast

Ads

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

Similar Threads

  1. [Theme] Deck - Working progress
    By eeaarrll in forum Droid Themes
    Replies: 9
    Last Post: 08-17-2010, 07:23 PM
  2. Daily Progress
    By woodyman in forum Droid Concepts
    Replies: 15
    Last Post: 04-25-2010, 02:26 PM
  3. Progress bar colors?
    By roberj13 in forum Droid Themes
    Replies: 1
    Last Post: 03-03-2010, 05:56 PM
  4. Simple Theme (work in progress)
    By dick.fickling in forum Droid Themes
    Replies: 6
    Last Post: 02-28-2010, 06:53 PM
  5. Eris ROM 1.17.605.1 OTA update in progress
    By Jolest in forum HTC Droid Eris
    Replies: 13
    Last Post: 01-19-2010, 09:40 AM

Search tags for this page

android textcolorprimaryinverse

,
convert px to sp android
,
drawable/progress small white
,
how to convert px to sp
,

samsung s803 themes

,

samsung s803 themes dwnlod.

,

textcolorprimaryinverse

,

?????????? samsong s803

Click on a term to search our site for related topics.
Find us on Google+