REQUIRED (THINGS TO DOWNLOAD):1. JDK ->
http://www.oracle.com/technetwork/java/jav...ds-1880260.html (depends if your system is 32bit or 64bit.. its at the bottom of the first column download box)
2. 7zip ->
http://www.7-zip.org/download.html (somehow i find that this one fully copies everything to the apk file instead of winrar)
3. Notepad++ ->
http://notepad-plus-plus.org/download/v6.3.2.html (for easier editing)
4. the APK decompiler ->
http://d-h.st/6Xr (MUST.. no installations.. just unzip)
ONCE the 4 items have been downloaded and installed, proceed below:----------------------------------------------------------------------------------------------------------------------
1. extract the APK decompiler zip onto your desktop or something then rename it to "apktool".. or just about anything
2. copy SystemUI.apk and framework-res.apk from your phone to desktop:
- /system/app/SystemUI.apk
- /system/framework/framework-res.apk
3. place them under the "apktool" folder, then create a new folder named "backup", make a 2nd copy of both files into the backup (you'll need it later)
» Click to show Spoiler - click again to hide... «
----------------------------------------------------------------------------------------------------------------------
1. notice the Command Prompt.bat? open that and type the following:
i.
CODE
apktool if framework-res.apk
ii.
CODE
apktool d SystemUI.apk
» Click to show Spoiler - click again to hide... «
a. folder "SystemUI" should exist
b. the circled part -> that's where the "framework-res.apk" will be stored temporarily (no need to bother about this, but DO NOT delete if you are still editing)
ONCE this step has been completed, proceed below:----------------------------------------------------------------------------------------------------------------------
1. navigate SystemUI/res/values/colors.xml
2. open "colors.xml" with notepad++ (drag and drop in the program, or just right click on the file and see the context menu if u have it)
3. change the following line from:
QUOTE
<color name="system_ui_opaque_background">#ff000000</color>
to
<color name="system_ui_opaque_background">#80000000</color>
** "80" is the stock opacity level, on 4.2.2 sony xperia z stock rom as well, its 50% opacity **
(eighty, not 8 o)
4. save it.
refer to this chart for opacity level:
» Click to show Spoiler - click again to hide... «
FF 100%
E6 90%
CC 80%
B3 70%
99 60%
80 50%
66 40%
80 30%
33 20%
1A 10%
0 0%
----------------------------------------------------------------------------------------------------------------------
ONCE YOU ARE DONE, THEN ITS TIME TO RECOMPILE1. re-open Command Prompt.bat
2. type:
CODE
apktool b -f -d SystemUI
3. wait for it (be patient), if no errors, it should look like this:
» Click to show Spoiler - click again to hide... «
ONCE its all recompiled, open "SystemUI", a folder named "
dist" should EXIST, and inside it there's "SystemUI.apk"
----------------------------------------------------------------------------------------------------------------------
IF IT EXISTS, TIME TO RE-ADD THE SIGNATURE BACK INTO YOUR FILE1. remember the folder "backup" ? if yes proceed:
2. open both SystemUI.apk side by side via 7zip (right click on the files -> 7-zip -> Open Archive)
(place them side by side)
3. drag both META-INF and AndroidManifest.xml (FROM
ORIGINAL, UNTOUCHED SystemUI.apk)
TO the one in the /dist/ folder
» Click to show Spoiler - click again to hide... «
*when asked if you wish to overwrite, just click "YES"
----------------------------------------------------------------------------------------------------------------------
LAST PART:1. copy the edited SystemUI.apk into your ext_card, somewhere where you can find it later in a root browser/explorer
2. copy or move it to /system/ first
3. change permissions to rw-r-r
4. move it to /system/app/
5. reboot
6. you're done
narutomax minejaand if by chance nova finally updated that it has transparency, then.. just re-copy back the original systemui.apk to our phone
This post has been edited by mafioso: Jul 21 2013, 06:47 PM