This is my Android tablet bootscreen that I use on my Advent Vega. It is based off the bootloader image found in this thread with a few modifications. To use this boot screen on your device I have written a quick guide which applies to the Vega, but should be similar for other Android tablets.
This guide assumes you have adb somewhere in your system path. If you haven’t, make sure you open the terminal/command prompt in the directory where adb resides. I take no responsibility for any damages done to your device, but really, everything should go fine.
Thanks go to JordanT92 and r8zer at Modaco for pointers on what files to edit and remove.
- Connect your tablet to your PC via USB.
- Turn USB Debugging on in the Applications menu.
- Now open a terminal (Linux/OSX) or a command prompt (Windows) and grab your devices framework-res.apk file from your device with the following line:
adb pull /system/framework/framework-res.apk /framework-res.apk
- Now you have a framework-res.apk, I recommend you make a backup of the file just in case anything goes wrong (you could brick your device and need to flash back to a stock rom!).
- Open up the framework-res.apk file in an archiving program like WinRAR or 7Zip.
- Replace the android-logo-mask.png file in the /assets/images/ directory with your bootscreen and save the apk.
- Now type the following to mount the file system of your device as writable:
adb remount - Then remove the existing file on the device with the following command:
adb shell rm /system/framework/framework-res.apk
- Then we need to put our new modified file onto the device with the following command:
adb push framework-res.apk /system/framework/framework-res.apk
- If all goes well, you should be able to reboot the device and see your new boot screen!
- If there is a problem with the amount of space available and you cannot push the framework-res.apk back to the device, you will have to make room. In the Vega framework-res.apk there are some nVidia image files that aren’t needed in the /res/drawable/ directory:
nvidia_wallpaper01.jpg
nvidia_wallpaper02.jpg
nvidia_wallpaper03.jpg
nvidia_wallpaper04.jpg
nvidia_wallpaper05.jpg
nvidia_wallpaper06.jpg
nvidia_wallpaper07.jpg
nvidia_wallpaper_dual01.jpg
nvidia_wallpaper_dual02.jpg
nvidia_wallpaper_dual03.jpg
nvidia_wallpaper_dual04.jpg
nvidia_wallpaper_dual05.jpg
nvidia_wallpaper_dual06.jpg
nvidia_wallpaper_dual07.jpg
Or, on the device, you could remove the ringtones (not much use on a tablet) which are located in the /system/media/audio/ringtones/ directory. These can be removed with the following commands at a terminal/command prompt:adb remount
adb shell
cd /system/media/audio/ringtones
rm *.ogg
exit