2

据我所知,Android 启动过程中有 3 种类型的徽标。
如何从我的应用程序中更改它们?
我尝试更改 bootanimation.zip,但没有成功。

我已经扎根了 Ross&Moor rmd-713 平板电脑。

4

1 回答 1

0

Its better to install a bootanimation from your Sdcard opposed to from inside the system directory, so like this.

Runtime.getRuntime().exec(new String[]{
    "/system/xbin/su","-c", "cp",
    "/mnt/sdcard/(your folder)/customBootAnimation.zip", 
    "/system/media/bootanimation.zip"});

change the (your folder) to the folder on the sdcard containing the zip you want to install. Hope this helped.

于 2013-05-29T03:09:28.007 回答