修改状态栏时间颜色:
在反编译目录打开 /system/layout/status_bar.xml 推荐用Notepad++ 打开 。百度下载、。也可以记事本打开。
搜索:<com.android.systemui.statusbar.policy.Clock
在<com.android.systemui.statusbar.policy.Clock后面加一个空格 然后加入 android:textColor="#ffffffff"
前两位为透明度。ff为不透明 00为透明。十六进制代码.。字体颜色通常只使用ff
后面六位为字体颜色。rgb代码
000000 为黑色
ffffff 为白色
ff0000 为红色
33b5e5 为ics 的蓝色
修改通知字体颜色:
搜索<com.android.systemui.statusbar.phone.TickerView
然后就能看见下面两行都有 <TextView android:textAppearance="@style/TextAppearance.StatusBar.PhoneTicker" 在它后面加入一个空格 然后加入 android:textColor="#ffffffff"
注意。两个<TextView android:textAppearance="@style/TextAppearance.StatusBar.PhoneTicker"后面都要加
在反编译目录打开 /system/layout/status_bar.xml 推荐用Notepad++ 打开 。百度下载、。也可以记事本打开。
搜索:<com.android.systemui.statusbar.policy.Clock
在<com.android.systemui.statusbar.policy.Clock后面加一个空格 然后加入 android:textColor="#ffffffff"
前两位为透明度。ff为不透明 00为透明。十六进制代码.。字体颜色通常只使用ff
后面六位为字体颜色。rgb代码
000000 为黑色
ffffff 为白色
ff0000 为红色
33b5e5 为ics 的蓝色
修改通知字体颜色:
搜索<com.android.systemui.statusbar.phone.TickerView
然后就能看见下面两行都有 <TextView android:textAppearance="@style/TextAppearance.StatusBar.PhoneTicker" 在它后面加入一个空格 然后加入 android:textColor="#ffffffff"
注意。两个<TextView android:textAppearance="@style/TextAppearance.StatusBar.PhoneTicker"后面都要加