Advertisement
Perka

Transparent Noti Bar

Mar 10th, 2012
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. SystemUI.apk\res\values\drawables.xml
  2.  
  3. Change
  4. item type="drawable" name="status_bar_background">#00000000
  5. #00000000 would be fully transparent, #ff000000 is fully opaque
  6.  
  7. modify SystemUI.apk\smali\com\android\systemui\statusbar\ StatusBar.smali
  8.  
  9. change line 388 to "const/16 v16, -0x3"
  10.  
  11. compile and in /keep delete classes.dex /res resources
  12.  
  13. 85% black should be #D8000000.
  14. Each component (A, R, G, B) can take values from 0-255. 85% of 255 = 216. 216 in Hex = D8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement