Certo :) Ti traduco questa guida di xda che ho usato per cambiare il background nella mia rom--> [TUTORIAL] How to change Android's black background - xda-developers
Ovviamente te la scrivo all'inverso perchè a te serve tegliere il background non metterlo ;)
COME RENDERE NERO IL BACKGROUND DI ANDROID
Requisiti:
-ApkTool
-Notepad++
Come procedere...
1. Decompilare il file framework-res.apk
2. Aprire res/values/styles.xml
3. Trova la stringa <style name="Theme">
4. Sostituire
<item name="colorBackground">@color/transparent</item>
con
<item name="colorBackground">@color/background_dark</item>
5. Sostituire
<item name="windowBackground">@drawable/mybackground</item>
con
<item name="windowBackground">@drawable/screen_background_dark</item>
6. Trova <style name="Theme.Black" parent="@style/Theme">
7. Sostituire
<item name="colorBackground">@color/transparent</item>
con
<item name="colorBackground">@color/black</item>
8. Sostituire
<item name="windowBackground">@drawable/mybackground</item>
con
<item name="windowBackground">@color/black</item>
9. Eliminare il file mybackground.png presente in drawable-hdpi
10. Ricompila framework-res.apk
11. Finito!
Spero che riuscirai ad adattarla al framework di quella rom