Building splash screen - myTouch 4G Q&A, Help & Troubleshooting

Hey,
I'm a noob dev, and was curious about building a splash screen from a Mac. I have the .gif animations done, not sure how to compile though!
Also curious about building themes and roms.
Any pointers/sites to help?
Thanks!
Sent from my HTC Glacier using XDA App

Are you talking about making splash screens or boot animations?
Splash Screens = Static screen that displays myTouch4G
Boot Animation = Animated images that display prior to the operating system

Preferably both.
But I'm assuming boot animation would be the proper term for what I was trying to describe.
Sent from my HTC Glacier using XDA App

Splash screens are really easy. The file that you will need to create to convert will have to be a 480x800 png, jpeg, or bmp. Then just visit TrueBlue_Drew's thread and grab his app for converting/flashing splash screens.
Boot animations are a little trickier. You must take your animation and split it into a png sequence. Then you will create two folders and a txt file. The folders will be named part0 and part1. The txt file will be named desc.txt. Inside the folder part0 you will place your png sequence. Then in part1 you will place any of the png sequence you want to loop until the OS finishes booting. The desc.txt will look like this
Code:
480 800 30
p 1 0 part0
p 0 0 part1
The first line contains the animation's size and frame rate. Then the second and third line will begin with a 'p' then the number of times the animation will loop is the first number. I honestly don't know what the second number does. I haven't messed with it as the guide I originally found didn't have the function of that number either. Then of course it has the folder name at the end of the line. Then you zip the two folders and the txt with storage compression and you have your bootanimation! Can't wait to see what you come up with! I'll keep this thread saved if you need any more help!

Thanks!
I have created my basic animation and splash screen image. However, I am running on a mac and very against using parallels/partitioning my hard drive. Are there any other alternatives as to creating the correct form of .img file?

There is a way to convert the pngs to img files through the command line. I'm not sure if it will work for mac. But as it's done through the AndroidSDK/tools folder I'm assuming it should.
http://forum.xda-developers.com/showpost.php?p=10552423&postcount=129
follow this link. The files that you need are there, along with a link to the original thread containing the line of code you'll need to input to convert the png. If you have any more questions I'll be here.

Iriscience said:
There is a way to convert the pngs to img files through the command line. I'm not sure if it will work for mac. But as it's done through the AndroidSDK/tools folder I'm assuming it should.
http://forum.xda-developers.com/showpost.php?p=10552423&postcount=129
follow this link. The files that you need are there, along with a link to the original thread containing the line of code you'll need to input to convert the png. If you have any more questions I'll be here.
Click to expand...
Click to collapse
FFMPEG will work with a mac. Just follow the links that Iriscience provided.

Related

Boot Animation

Does anyone know how to make a boot animation? I haven't rooted my phone (yet!), but I wanted to make my own boot animation. What would be the easiest way to do this?
you can replace the bootanimation.zip from folder "system\customize\resource".
Bootanimation
If you have rooted the phone you could replace the standard bootanimation executable with Cyanogen's. That one allow for more flexibility for custom animation. Cyanogen's boot animation's are series of PNG files of certain size placed in a single zip file. There is also a small description file that allows for setting up loops and have different frame rates for different pieces of the animation.
Just make sure that when you compiling the zip file you specify zero compression option (store).

[GUIDE] How To Make Custom Bootanimation

Hello Everyone
Here Is The Tutorial On How to Create Ur Own Boot Animation for U r Mobile...
Requirements :
1) Windows OS
2) BootAnimation Factory : Go here http://forum.xda-developers.com/showthread.php?t=1678540
3) Image Resizer (To change the resolution of the images) : Go here https://imageresizer.codeplex.com/
4) Image Editing Software ( Your wish)
5) 7Zip
6) Notepad++
What Is BootAnimation??
The Android boot animation is contained within a an uncompressed zip file called bootanimation.zip that can be found in the media folder of the system partition i.e. /system/media on the internal memory of the device. This single file contains all the information required to play the boot animation, and is loaded automatically when the device boots.
What a Bootanimation.zip Contains??
. If you extract the contents of the bootanimation.zip file to your computer, you will see:
1) A desc.txt file
2) A part0 folder (Contains PNG images named in incremental numbers)
3) More part1, part2 etc. folders (May or may not be present)
As you can see, bootanimation.zip merely contains one text file and one or more folders with PNG images. The animation is played simply by displaying the images in a sequence, and the text file defines how they are to be played. In essence, first the PNG files in the part0 folder are displayed one after the other and afterwards, those in the part1 file – if it exists – are displayed, again one after the other, and so on. All of this is defined in the desc.txt file.hence desc.txt file is vital file for creating a bootanimation.
Now Will See What Each Files And Folder Does:laugh:
Imp : I Am Taking The Example Of My Samsung Galaxy Grand Duos - GT-I9082 whose Resolution is 480X800. This Guide is applicable to all Andriod Devices Difference u have to make is the RESOLUTION of u r Device.
The folders
{
"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"
}
These contain PNG images named in numbers, starting from something like 0000.jpg or 00001.jpg and proceeding with increments of 1. There has to be at least one folder, and there is no known upper limit to the number of folders.
The desc.txt file
This file defines how the images in the folder(s) are displayed during the boot animation, in the following format:
Width Height Frame-rate
p Loop Pause Folder1
p Loop Pause Folder2
An example of a desc.txt file is:
480 800 30
p 1 0 part0
p 0 0 part1
As you can see, in the first line, 480 and 800 define the width and height of the boot animation in pixels for this example. This must be the same as the screen resolution of your device for the boot animation to properly play in full screen. 30 is the frame rate in fps (frames per second) i.e. number of images to display per second.
The second and third lines have a same format, start with p, which stands for a part of the animation and end in part0 or part1, which denotes the folder in which the images for that part are present.
The number after ‘p’ defines how many times this part will loop (repeat playback) before switching to the next part (if present). Specifying 0 would make the part loop indefinitely till the phone has fully booted.
The next number is for the pause, and is expressed in the number of frames, which can be translated into time by dividing it by the frame rate. A pause of 15 for example, would mean pausing for the time it takes 15 frames to play and since the frame rate is 30 frames per second, 15 frames would take half a second.
Translating all of this in case of the above example, the boot animation will play at a resolution of 480 by 800 pixels, at a frame rate of 30 fps, starting with the contents of part0 folder and after playing them in one loop, switching to contents of part1 folder and playing them continuously till the device fully boots.
Steps To Create Ur Own Bootanimations
1) Download All The Necessary Tools U need To For This.
2) Install The Necessary Softwares.
3) Go through the entire Inside the bootanimation.zip File Which I will attach at the end of this guide.
4) Plan how your boot animation will run. This includes how many distinct parts it will have, how long will each part play and what will be the sequence of the parts.
5) Make a new folder at any convenient location on your computer, and name it bootanimation.
6) In this folder, create a folder for each part of your boot animation, named part0, part1 and so on.
7) In the image editor of your choice (Adobe Photoshop,GIMP), make all the image files for each part of your boot animation with the proper dimensions equal to your phone’s screen resolution, and save them in the respective folder for each part, in PNG format. Up to 32 bit PNGs are supported.
Note: In case you are converting an existing boot animation to fit your phone’s screen, simply extract the images from it and resize each of them to your device’s screen resolution.
8) Make sure the images are named in numerical format and in proper sequence, i.e. the images in the first part should start with let’s say 00000.jpg and go on till 00075.jpg, and the images in the second part should then start off with 00076.jpg and go on till – for instance – 00123.jpg.
9) Now open the Boot Animation Factory Tool.
10) Click on “Create a New Boot Animation” Button.
11) There will be 2 options Asking for Source (1)From folder and (2) From GIF. Since In This Guide I have used Folder Method, Select Folder and click OK
12) Click On Choose folder and Select The bootanimation folder were u had stored all the necessary folders and images.
13) At the Right Hand Side You Can see the tab were the Resolution of The pics will be displayed..You can edit it and change the resolution and FPS too. Let the setting be “Don’t Repeat”
14) click on add loop button.
15) Select The Folder Ex: part0 . For this folder Set THE LOOP to 1 and TIME DELAY to 0 ( You Can Put your Custom delay if u wish) and Click ADD button.
16) Repeat the Step 15 but here Select the next part In Folder Ex : part1
17) If U have more part folders select the respective part and repeat the Step 15.
18) For last folder ( Ex : If part1 is last folder ) the SET THE LOOP to 0 . So that it Repeats
19) You can PREVIEW your bootanimation before saving by clicking on PREVIEW Button.
20) Click Save Boot Animation Button and name it has “bootanimation”
You Have Done A Bootanimation Successfully..:laugh::laugh:
How To Put It In Your Device?
File browser method (Rooted devices only):
1) Connect your phone to your computer via USB and mount the storage card for file transfer.
2) Copy the bootanimation.zip file that you want to install, to your SD card.
3) Unmount USB storage and launch the file browser of your choice on your phone.
4) Browse to /system/media, copy the existing bootanimation.zip file from there and paste it somewhere safe on your SD card.
5) Browse to the location on the SD card where you copied the new bootanimation.zip and copy it.
6) Browse to /system/media and paste the bootanimation.zip file there.
7) If you are using Root Explorer App, you will have to Touch ‘Mount R/W’. This will make your system partition writeable.
8) Check if the permissions are rw-r—r—. If not, change them to that.
9) Reboot And Enjoy Your New Bootanimation Done by You:laugh:
Credits :
despotovski01 for his AWESOME BOOTANIMATION FACTORY....
FOR SAMPLE SEE ATTACHEMENTS
:laugh:IF IT HELPED YOU KINDLY PRESS THANKS BUTTON SO THAT I WILL KNOW HOW MANY PEOPLE ARE BENEFITED FROM IT:laugh:
Excellent tutorial...well described... keep up the good work
doctor_droid said:
Excellent tutorial...well described... keep up the good work
Click to expand...
Click to collapse
Thanks doctor_droid for your inspirational reply
Hello Everyone
Here Is The Tutorial On How to Create Ur Own Boot Animation for U r Mobile...
Requirements :
1) Windows OS
2) BootAnimation Factory : Go here http://forum.xda-developers.com/showthread.php?t=1678540
3) Image Resizer (To change the resolution of the images) : Go here https://imageresizer.codeplex.com/
4) Image Editing Software ( Your wish)
5) 7Zip
6) Notepad++
What Is BootAnimation??
The Android boot animation is contained within a an uncompressed zip file called bootanimation.zip that can be found in the media folder of the system partition i.e. /system/media on the internal memory of the device. This single file contains all the information required to play the boot animation, and is loaded automatically when the device boots.
What a Bootanimation.zip Contains??
. If you extract the contents of the bootanimation.zip file to your computer, you will see:
1)A desc.txt file
2)A part0 folder (Contains PNG images named in incremental numbers)
3)More part1, part2 etc. folders (May or may not be present)
As you can see, bootanimation.zip merely contains one text file and one or more folders with PNG images. The animation is played simply by displaying the images in a sequence, and the text file defines how they are to be played. In essence, first the PNG files in the part0 folder are displayed one after the other and afterwards, those in the part1 file – if it exists – are displayed, again one after the other, and so on. All of this is defined in the desc.txt file.hence desc.txt file is vital file for creating a bootanimation.
Now Will See What Each Files And Folder Does:laugh:
Imp : I Am Taking The Example Of My Samsung Galaxy Grand Duos - GT-I9082 whose Resolution is 480X800. This Guide is applicable to all Andriod Devices Difference u have to make is the RESOLUTION of u r Device.
The folders
These contain PNG images named in numbers, starting from something like 0000.jpg or 00001.jpg and proceeding with increments of 1. There has to be at least one folder, and there is no known upper limit to the number of folders.
The desc.txt file
This file defines how the images in the folder(s) are displayed during the boot animation, in the following format:
Width Height Frame-rate
p Loop Pause Folder1
p Loop Pause Folder2
An example of a desc.txt file is:
480 800 30
p 1 0 part0
p 0 0 part1
As you can see, in the first line, 480 and 800 define the width and height of the boot animation in pixels for this example. This must be the same as the screen resolution of your device for the boot animation to properly play in full screen. 30 is the frame rate in fps (frames per second) i.e. number of images to display per second.
The second and third lines have a same format, start with p, which stands for a part of the animation and end in part0 or part1, which denotes the folder in which the images for that part are present.
The number after ‘p’ defines how many times this part will loop (repeat playback) before switching to the next part (if present). Specifying 0 would make the part loop indefinitely till the phone has fully booted.
The next number is for the pause, and is expressed in the number of frames, which can be translated into time by dividing it by the frame rate. A pause of 15 for example, would mean pausing for the time it takes 15 frames to play and since the frame rate is 30 frames per second, 15 frames would take half a second.
Translating all of this in case of the above example, the boot animation will play at a resolution of 480 by 800 pixels, at a frame rate of 30 fps, starting with the contents of part0 folder and after playing them in one loop, switching to contents of part1 folder and playing them continuously till the device fully boots.
Steps To Create Ur Own Bootanimations
1) Download All The Necessary Tools U need To For This.
2) Install The Necessary Softwares.
3) Go through the entire Inside the bootanimation.zip File Which I will attach at the end of this guide.
4) Plan how your boot animation will run. This includes how many distinct parts it will have, how long will each part play and what will be the sequence of the parts.
5) Make a new folder at any convenient location on your computer, and name it bootanimation.
6) In this folder, create a folder for each part of your boot animation, named part0, part1 and so on.
7) In the image editor of your choice (Adobe Photoshop,GIMP), make all the image files for each part of your boot animation with the proper dimensions equal to your phone’s screen resolution, and save them in the respective folder for each part, in PNG format. Up to 32 bit PNGs are supported.
Note: In case you are converting an existing boot animation to fit your phone’s screen, simply extract the images from it and resize each of them to your device’s screen resolution.
8) Make sure the images are named in numerical format and in proper sequence, i.e. the images in the first part should start with let’s say 00000.jpg and go on till 00075.jpg, and the images in the second part should then start off with 00076.jpg and go on till – for instance – 00123.jpg.
9) Now open the Boot Animation Factory Tool.
10) Click on “Create a New Boot Animation” Button.
11) There will be 2 options Asking for Source (1)From folder and (2) From GIF. Since In This Guide I have used Folder Method, Select Folder and click OK
12) Click On Choose folder and Select The bootanimation folder were u had stored all the necessary folders and images.
13) At the Right Hand Side You Can see the tab were the Resolution of The pics will be displayed..You can edit it and change the resolution and FPS too. Let the setting be “Don’t Repeat”
14) click on add loop button.
15) Select The Folder Ex: part0 . For this folder Set THE LOOP to 1 and TIME DELAY to 0 ( You Can Put your Custom delay if u wish) and Click ADD button.
16) Repeat the Step 15 but here Select the next part In Folder Ex : part1
17) If U have more part folders select the respective part and repeat the Step 15.
18) For last folder ( Ex : If part1 is last folder ) the SET THE LOOP to 0 . So that it Repeats
19) You can PREVIEW your bootanimation before saving by clicking on PREVIEW Button.
20) Click Save Boot Animation Button and name it has “bootanimation”
You Have Done A Bootanimation Successfully..:laugh::laugh:
How To Put It In Your Device?
File browser method (Rooted devices only):
1) Connect your phone to your computer via USB and mount the storage card for file transfer.
2) Copy the bootanimation.zip file that you want to install, to your SD card.
3) Unmount USB storage and launch the file browser of your choice on your phone.
4) Browse to /system/media, copy the existing bootanimation.zip file from there and paste it somewhere safe on your SD card.
5) Browse to the location on the SD card where you copied the new bootanimation.zip and copy it.
6) Browse to /system/media and paste the bootanimation.zip file there.
7) If you are using Root Explorer App, you will have to Touch ‘Mount R/W’. This will make your system partition writeable.
8) Check if the permissions are rw-r—r—. If not, change them to that.
9) Reboot And Enjoy Your New Bootanimation Done by You:laugh:
Credits :
despotovski01 for his AWESOME BOOTANIMATION FACTORY....
FOR SAMPLE SEE ATTACHEMENTS
:laugh:PLZ PRESS THANKS BUTTON IF U ALL LIKE MY WORK:laugh:
Click to expand...
Click to collapse
Hello , @jackeagle . I've followed ur guide and made a bootanimation successfully . But how to convert bootanimation.zip to bootsamsung.qmg and bootsamsungloop.qmg ? Please telp me
Sent from my GT-I9082 using xda app-developers app
Aeyan Ashraf said:
Hello , @jackeagle . I've followed ur guide and made a bootanimation successfully . But how to convert bootanimation.zip to bootsamsung.qmg and bootsamsungloop.qmg ? Please telp me
Sent from my GT-I9082 using xda app-developers app
Click to expand...
Click to collapse
Congrats on successfully making a bootanimation:victory: plz press thanks button if helped Regarding converting bootanimation.zip to .qmg files there is separate steps to do...
jackeagle said:
Congrats on successfully making a bootanimation:victory: plz press thanks button if helped Regarding converting bootanimation.zip to .qmg files there is separate steps to do...
Click to expand...
Click to collapse
Can you make a guide describing the seperate steps or can you PM me please ?
Sent from my GT-N7100 using XDA Premium 4 mobile app
Aeyan Ashraf said:
Can you make a guide describing the seperate steps or can you PM me please ?
Sent from my GT-N7100 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Here U Go for guide by me http://forum.xda-developers.com/showthread.php?p=52107807 :highfive::laugh::laugh:
jackeagle said:
Here U Go for guide by me http://forum.xda-developers.com/showthread.php?p=52107807 :highfive::laugh::laugh:
Click to expand...
Click to collapse
Thanks bro ..... A ton thanks to u !!!!!!!!
Sent from my GT-I9082 using XDA Premium 4 mobile app
Aeyan Ashraf said:
Thanks bro ..... A ton thanks to u !!!!!!!!
Sent from my GT-I9082 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Welcome
Sent from my GT-I9082 using XDA Premium 4 mobile app
Hello jackeagle,
Good guide there.
I'm a GT-19082 user as well, but my Stock ROM does not contain any bootanimation.zip in System>media
Instead these are the files I get. (pic attached below)
could you please help me out in this?
Thanks.
saudkhan75 said:
Hello jackeagle,
Good guide there.
I'm a GT-19082 user as well, but my Stock ROM does not contain any bootanimation.zip in System>media
Instead these are the files I get. (pic attached below)
could you please help me out in this?
Thanks.
Click to expand...
Click to collapse
Hello Saudkhan75..!!
Stock ROM doesn't have bootanimation.zip. in Samsung stock ROM it will in .qmg format like bootsamsung.qmg and bootsamsungloop.qmg these both file will work has bootanimation.zip...
If u want to know how to convert boot animation.zip to .qmg go here http://forum.xda-developers.com/showthread.php?p=52107807
Press Thanks Button If Helped..
Sent from my GT-I9082 using XDA Premium 4 mobile app
jackeagle said:
Hello Saudkhan75..!!
Stock ROM doesn't have bootanimation.zip. in Samsung stock ROM it will in .qmg format like bootsamsung.qmg and bootsamsungloop.qmg these both file will work has bootanimation.zip...
If u want to know how to convert boot animation.zip to .qmg go here http://forum.xda-developers.com/showthread.php?p=52107807
Press Thanks Button If Helped..
Sent from my GT-I9082 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Hello!!
(I'm new to modding, so please don't mind if I say something wrong.)
I already got the bootsamsung.qmg and bootsamsungloop.qmg files in my Stock ROM.
My question is how will I convert them to part0 and part1 to edit?
also, is it important to for those files to be in .zip to run?
saudkhan75 said:
Hello!!
(I'm new to modding, so please don't mind if I say something wrong.)
I already got the bootsamsung.qmg and bootsamsungloop.qmg files in my Stock ROM.
My question is how will I convert them to part0 and part1 to edit?
also, is it important to for those files to be in .zip to run?
Click to expand...
Click to collapse
Actually There is no way to convert the .qmg or open the .qmg file to get part0 and part1 folders...even the software which makes the .qmg files can't open it Its kind of closed -source algorithm...
2) YES they are very important these folders contains the images which later combine to form an animation without those folder and command the zip is useless...READ the guide carefully if you wanna know more about these folders...
Always Feel FREE to ask any doubts you have...
jackeagle said:
Actually There is no way to convert the .qmg or open the .qmg file to get part0 and part1 folders...even the software which makes the .qmg files can't open it Its kind of closed -source algorithm...
2) YES they are very important these folders contains the images which later combine to form an animation without those folder and command the zip is useless...READ the guide carefully if you wanna know more about these folders...
Always Feel FREE to ask any doubts you have...
Click to expand...
Click to collapse
Thanks fpr the reply.
In your bootanimation.zip file I could see 2 folders and a txt document.
I got those .qmg files with me, now, how can I make a bootanimation.zip of them like you did?
saudkhan75 said:
Thanks fpr the reply.
In your bootanimation.zip file I could see 2 folders and a txt document.
I got those .qmg files with me, now, how can I make a bootanimation.zip of them like you did?
Click to expand...
Click to collapse
You need to do it on your own either u have to make animation images...Just search in google for animation tutorial videos using photoshop or u need a video using which you can get the frames from it so that u can get the images directly and use it in project... Read my guide carefully.
jackeagle said:
You need to do it on your own either u have to make animation images...Just search in google for animation tutorial videos using photoshop or u need a video using which you can get the frames from it so that u can get the images directly and use it in project... Read my guide carefully.
Click to expand...
Click to collapse
Okay, Got you! Thanks for your help.
Sent from my GT-I9082 using XDA Free mobile app
saudkhan75 said:
Okay, Got you! Thanks for your help.
Sent from my GT-I9082 using XDA Free mobile app
Click to expand...
Click to collapse
If u need any help u can ask me..
Press thanks button instead of saying
Sent from my GT-I9082 using XDA Premium 4 mobile app

Bootanimation wont load

Hello guys,
I am new to XDA forums and also new to customizing my own Theme.
Following few tutorials and possible fixes, I did not manage to get my S4 i9505 to load my bootanimation that I created.
MY PHONE:
GT-I9505
11-20141112-SNAPSHOT-M12-jflte (CyanodenMod Version)
4.4.4 (Android version)
BOOTANIMATION.ZIP:
part0
image00.png - image17.png
part1
image18.png - image21.png
desc.txt
1080 1920 48
p 1 0 part0
p 0 0 part1
The above is my content inside BOOTANIMATION ZIP. Compressed with WinRAR using "STORE" as compress mode. PNGs developed with Adobe Photoshop. DESC was written in NOTEPAD.
2. Copied the .ZIP into my sdcard folder form Computer.
3. Opened File Manager with escalated Root Priviliges.
4. Selected my bootanimation.zip and copied it inside system/media/ .. overwritting previous bootanimation.zip
4.1 After some suggestions on web, I also copied one copy to root/data/local
When I reboot my phone, the CyanogenMod boot is no longer, but neither does it load my bootanimation.
It just loads some standard "android" animation.
Can anybody please help me?
Best,
WW
Did you change permissions to rw-r--r-- for the file in /system/media? Did you make sure no other files were stored in the zip, like a thumbs.db file? Check, because both of these are sufficient to stop the boot animation from functioning.
Two other related issues I see. Issue one is the number of frames per second. 48 frames/second seems a bit fast. Are you sure you want that? Issue two is that you need to delete the boot animation from /data/local if you already have a copy in /system/media.

Custom boot animations not working

So I've been trying to get a boot animation I've been working on for this phone to work and the old method of just putting the zip in the system/media or system/customize/resource folder seems to no longer work. I read a few places about having to edit a bootimage bin file but could only find info on that for Samsung phones and qmg files. Just hoping someone can point me in the right direction to learn the new process for our phone
need to replace vzw_bootup.zip to replace the boot animation on the Verizon model not bootanimation.zip. it is also case sensitive so when replacing the file notice how its typed. like VZW_bootup or vzw_bootup.zip etc...
you were in the right folder, the resources folder
I think there's more to it than just that. I have tried to open the vzw_bootup.zip with 7-zip and it doesn't recognize the file. In addition, the splash screens instead of being in a separate partition (sp1 on the M9 and A9) are in \system\customize\resource as splash_screen.png (and is invoked by default.xml in \system\customize\cid.
I have done that. If it's named anything but vzw_bootup.zip it simply loads the default Android boot but if I put a modified boot animation with vzw_bootup.zip as the name it only shows the splash screen right up until my home screen loads. I've given correct permissions and everything. Something about the bootanimation binary file is checking for the correct png files or something in the zip.
Update: I pulled the notification binary file from leedroid (dunno if it's any different just figured I'd try) and ticked permissions for all on the binary file just like the vzw_bootup.zip has and the custom animation somewhat works now. It is skipping half of the second folder but I assume that's something I did.
Deleted. (hit reply instead of edit) =/
hgoldner said:
I think there's more to it than just that. I have tried to open the vzw_bootup.zip with 7-zip and it doesn't recognize the file. In addition, the splash screens instead of being in a separate partition (sp1 on the M9 and A9) are in \system\customize\resource as splash_screen.png (and is invoked by default.xml in \system\customize\cid.
Click to expand...
Click to collapse
I've done it already. It's as simple as that. It's case sensitive, I couldn't get it to work, I copied the text right off the file in root explorer pasted it onto the new animation zip. Asked to replace, I replaced it. Rebooted to the new animation.

Custom Boot Animation not working

Hey, first of all. I have root and TWRP installed.
Tried to make an custom boot animation (converted from .gif to .zip,containing 19 frames.) moved it to system/media and replaced it with the custom animation, renamed the custom animation to bootanimation.zip and changed the stock animation to bootanimation.zip1, rebooted and ots still the same. I know i am doing slmething wrong, but what?
Thanks in advance
If you're using a stock ROM, it doesn't support boot animation zips.
As to your zip, the files cannot be compressed, only stored. The text file that controls the settings cannot be edited using Windows notepad.
Strephon Alkhalikoi said:
If you're using a stock ROM, it doesn't support boot animation zips.
As to your zip, the files cannot be compressed, only stored. The text file that controls the settings cannot be edited using Windows notepad.
Click to expand...
Click to collapse
Converted the gif via Boot Animation(s) app. So i need to install a custom rom like CyanogenMod?
I forgot to mention the individual frames of the boot animation also must either be in .jpg or .png format. An AOSP ROM is required to use the bootanimation, unless you want to play around with Samsung's boot animation creator.
Strephon Alkhalikoi said:
I forgot to mention the individual frames of the boot animation also must either be in .jpg or .png format. An AOSP ROM is required to use the bootanimation, unless you want to play around with Samsung's boot animation creator.
Click to expand...
Click to collapse
Going to try Boot animation factory (since boot animation creator is outdated) also, my pics are in .jpg
.kyon said:
Going to try Boot animation factory (since boot animation creator is outdated) also, my pics are in .jpg
Click to expand...
Click to collapse
When compressing the images use the "store" option.
Also, make sure the zip is structure correctly.
When opening the zip you should have part0, part1 and desc.txt.
Those files should be in the root of the zip, not in other folders.

Categories

Resources