DroidForums.net is the original Verizon Android Forum! Registered Users do not see these ads. Please Register - It's Free!
Page 13 of 20 FirstFirst ... 3 11 12 13 14 15 ... LastLast
Results 121 to 130 of 193

Thread: Complete Comprehensive Tutorial on Custom Boot Animations

  1. Master Droid
    mammlouk's Avatar
    Member #
    15042
    Join Date
    Dec 2009
    Posts
    316
    Phone
    Motorola Droid
    The Droid will scale the images to fit whatever size you designate in the desc.txt
    If you attach your zip file someone will tell you what's wrong.
  2. Junior Droid
    Master00Sniper's Avatar
    Member #
    24543
    Join Date
    Jan 2010
    Posts
    8
    Phone
    Droid
    Good idea, i'll do just that

    Here it is
    Attached Files
  3. Master Droid
    mammlouk's Avatar
    Member #
    15042
    Join Date
    Dec 2009
    Posts
    316
    Phone
    Motorola Droid
    Looks like it's an issue with the line endings. It's got dos (Windows) line endings. You'll want to edit the file in something that lets you choose unix style line endings. I've always liked notepad++ when doing things on windows.
  4. Junior Droid
    Master00Sniper's Avatar
    Member #
    24543
    Join Date
    Jan 2010
    Posts
    8
    Phone
    Droid
    Interesting, that never would have occurred to me. I created another desc.txt file using notepad++, inserted the lines

    480 480 8
    p 0 0 part 0


    You said the issue might be with the line endings, what would I need to do in notepad++ in order to change that? Just using notepad++ instead of the regular notepad didn't do me any good.
    Last edited by Master00Sniper; 01-08-2010 at 01:28 AM.
  5. Droid
    HaLo2FrEeEk's Avatar
    Member #
    15792
    Join Date
    Dec 2009
    Posts
    46
    Phone
    Motorola Droid
    Ok, I'm sorry, but this is the most confusing tutorial I've ever had to attempt to follow. The way you write this all implies that you're doing the whole thing on your computer, am I right in assuming that? If the whole thing is done on your computer how the hell is the adb shell supposed to know what phone it's pushing to? I just did exactly this:

    I have a bootanimation.zip file containing a custom boot animation, the desc.txt file is correct, the files are named properly, it is a valid boot animation. I copied it to my android-sdk-windows/tools/ folder, then in command prompt opened up that folder. I typed in this exact command:

    adb push bootanimation.zip /data/local

    And the message I got...:

    error: device not found

    Well no ****. My Droid is plugged into the computer. It is not rooted, and it is currently mounted. You didn't specify anywhere in your tutorial how to connect the droid to the computer, or even anything about the device at all. Am I changing the boot animation on the android virtual device, or on my physical Droid device? I want to change it on my Droid.

    Please explain what I'm doing wrong. I've obviously either read something wrong, or you wrote something that I'm just not understanding.

    And before the "noob get out" comments start flying, I've been using shell for years administrating my server, so I do know what I'm doing, this just makes no sense.
  6. Master Droid
    mammlouk's Avatar
    Member #
    15042
    Join Date
    Dec 2009
    Posts
    316
    Phone
    Motorola Droid
    Quote Originally Posted by Master00Sniper View Post
    Interesting, that never would have occurred to me. I created another desc.txt file using notepad++, inserted the lines

    480 480 8
    p 0 0 part 0


    You said the issue might be with the line endings, what would I need to do in notepad++ in order to change that? Just using notepad++ instead of the regular notepad didn't do me any good.
    Sorry about that, it was late. In notepad++ go to Edit> EOL Conversion> Unix Format. Then resave the file and you should be good!
  7. Master Droid
    mammlouk's Avatar
    Member #
    15042
    Join Date
    Dec 2009
    Posts
    316
    Phone
    Motorola Droid
    Quote Originally Posted by HaLo2FrEeEk View Post
    Ok, I'm sorry, but this is the most confusing tutorial I've ever had to attempt to follow. The way you write this all implies that you're doing the whole thing on your computer, am I right in assuming that? If the whole thing is done on your computer how the hell is the adb shell supposed to know what phone it's pushing to? I just did exactly this:

    I have a bootanimation.zip file containing a custom boot animation, the desc.txt file is correct, the files are named properly, it is a valid boot animation. I copied it to my android-sdk-windows/tools/ folder, then in command prompt opened up that folder. I typed in this exact command:

    adb push bootanimation.zip /data/local

    And the message I got...:

    error: device not found

    Well no ****. My Droid is plugged into the computer. It is not rooted, and it is currently mounted. You didn't specify anywhere in your tutorial how to connect the droid to the computer, or even anything about the device at all. Am I changing the boot animation on the android virtual device, or on my physical Droid device? I want to change it on my Droid.

    Please explain what I'm doing wrong. I've obviously either read something wrong, or you wrote something that I'm just not understanding.

    And before the "noob get out" comments start flying, I've been using shell for years administrating my server, so I do know what I'm doing, this just makes no sense.
    Calm down, everything will be alright. LoL For starters have you downloaded the USB drivers frome here?:
    USB and PC Charging Drivers - Motorola USA
    You only really need the USB driver and not the charging driver.

    Then in your shell make sure the command "adb devices shows your phone available"

    You don't need to have your SDCARD mounted for this, but it won't hurt.

    If "adb devices" showed your phone then you should be able to use the "adb push" command as previously mentioned. If it doesn't work then post back here and I'll keep trying to help you sort it out.
  8. Junior Droid
    Master00Sniper's Avatar
    Member #
    24543
    Join Date
    Jan 2010
    Posts
    8
    Phone
    Droid
    Quote Originally Posted by mammlouk View Post
    Quote Originally Posted by Master00Sniper View Post
    Interesting, that never would have occurred to me. I created another desc.txt file using notepad++, inserted the lines

    480 480 8
    p 0 0 part 0


    You said the issue might be with the line endings, what would I need to do in notepad++ in order to change that? Just using notepad++ instead of the regular notepad didn't do me any good.
    Sorry about that, it was late. In notepad++ go to Edit> EOL Conversion> Unix Format. Then resave the file and you should be good!
    Thanks for you help mammlouk, unfortunately, that was not the problem (or perhaps it was just one of the problems)

    Here is my new bootanimation.zip folder. This contains the part0 folder with images and desc.txt file. Perhaps you can find something wrong with this?
    Attached Files
  9. Droid
    HaLo2FrEeEk's Avatar
    Member #
    15792
    Join Date
    Dec 2009
    Posts
    46
    Phone
    Motorola Droid
    Quote Originally Posted by mammlouk View Post
    Calm down, everything will be alright. LoL For starters have you downloaded the USB drivers frome here?:
    USB and PC Charging Drivers - Motorola USA
    You only really need the USB driver and not the charging driver.

    Then in your shell make sure the command "adb devices shows your phone available"

    You don't need to have your SDCARD mounted for this, but it won't hurt.

    If "adb devices" showed your phone then you should be able to use the "adb push" command as previously mentioned. If it doesn't work then post back here and I'll keep trying to help you sort it out.
    Thank you for this post, this was what I needed. See, the original post didn't say anything about this, so I wouldn't exactly call it "comprehensive."

    Anyway, I got it working, replaced the boot animation with the first one I could find, to test, then replaced the original one back until I can find one I really like.
  10. Senior Droid
    schertz7's Avatar
    Member #
    24911
    Join Date
    Jan 2010
    Location
    AZ
    Posts
    118
    Phone
    Galaxy Nexus
    Alright so i'm at work and cant isntall SDK, I'm trying to push this boot animation thru terminal. I unrooted my phone recently, not sure if that matters. But when i try and access ADB thur terminal it says permission denied. can someone break this down for me or maybe i'm just retarded haha
Page 13 of 20 FirstFirst ... 3 11 12 13 14 15 ... 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. Download complete notification
    By agemme27 in forum Android General Discussions
    Replies: 6
    Last Post: 07-16-2010, 09:03 AM
  2. Replies: 130
    Last Post: 06-14-2010, 02:50 PM
  3. Created the Droid Boot animations - something fun
    By 928Droid in forum Android General Discussions
    Replies: 6
    Last Post: 12-17-2009, 12:44 AM
  4. Change GDE transition animations?
    By DurangoJim in forum Android Applications
    Replies: 0
    Last Post: 12-10-2009, 08:31 AM
  5. Music starts on its own/no tutorial
    By droidnoob in forum Android Tech Support
    Replies: 4
    Last Post: 12-07-2009, 06:02 PM

Search tags for this page

android boot animation
,

android dude

,
android peeing
,
android peeing on apple boot animation
,

android pissing on apple boot animation

,
android wallpaper
,

boot animation

,
boot animation 320x240
,

boot animation android

,

bootanimation

,
cylon animated gif
,

cylon gif

,

droid incredible wallpaper

,
droid peeing on apple boot animation
,
droid wallpapers
Click on a term to search our site for related topics.
Find us on Google+