闲来无事教教大家如何制作状态栏下拉透明
(希望大家多多顶帖啊!顶的我开心了后面会继续放出更多教程)
1.反编译SystemUI.apk
2.找到SystemUI.apk\res\values\drawables.xml用文本编辑器打开
3.修改以下# 后面的8个数字( #后面两位表示透明度 FF表示不透 00表示全透 ) 保存
- [hide]<div class="blockcode"><blockquote><?xml version="1.0" encoding="utf-8"?>
- <resources>
- <item type="drawable" name="notification_number_text_color">#ffffffff</item>
- <item type="drawable" name="notification_item_background_color">#00000000</item>
- <item type="drawable" name="notification_item_background_color_pressed">#ff257390</item>
- <item type="drawable" name="ticker_background_color">#ff1d1d1d</item>
- <item type="drawable" name="status_bar_background">#b3000000</item>
- <item type="drawable" name="status_bar_recents_background_solid">#b3000000</item>
- <item type="drawable" name="status_bar_recents_app_thumbnail_background">#88000000</item>
- <item type="drawable" name="status_bar_notification_row_background_color">#00000000</item>
- <item type="drawable" name="notification_header_bg">#00000000</item>
- <item type="drawable" name="notification_tracking_bg">#b3000000</item>
- <item type="drawable" name="recents_callout_line">#9933b5e5</item>
- <item type="drawable" name="notification_item_background_legacy_color">#ffaaaaaa</item>
- </resources>
复制代码 |