2013-02-21 20 views
2


編程方式更改開機畫面中的Android

據我所知有3種類型的Android中啓動過程徽標。
如何從我的應用程序更改它們?
我試圖更改bootanimation.zip,但沒有成功。

我已經紮根羅斯&摩爾rmd-713平板電腦。

+0

你有沒有設法弄清楚這一點?我仍然在想自己。我嘗試了以下嘗試,結果如下: 'Runtime.getRuntime()。exec(new String [] {「/ system/xbin/su」,「 - c」, 「cp」,「/ system/media/customBootAnimation。 zip「, 」/system/media/bootanimation.zip「});' – anon58192932 2013-03-14 00:10:49

回答

0

它更好地從你的SD卡安裝從系統目錄內反對的bootanimation,所以像這樣。

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

變化(文件夾)到包含要安裝拉鍊的SD卡的文件夾。 希望這有助於。

相關問題