Please Help
GUIDE
I will share guide for make your framework-res.apk to be compatible with my SystemUI mod
First you must know how to decompile recompile apk file
read this tutorial if you in first time
ok lets do this...
decompile your framework-res.apk
go to res/values and open dimens.xml with notepad++ or similar program
find this
Code:
<dimen name="status_bar_height">25.0dip</dimen>
change dip to 40.0
and this one
Code:
<dimen name="status_bar_icon_size">24.0dip</dimen>
change dip to 30.0
How to change statusbar pulldown title font color
for first line can you find in folder res/values/styles.xml
find this
Code:
<style name="TextAppearance.StatusBar.Title" parent="@style/TextAppearance.StatusBar">
<item name="textStyle">bold</item>
</style>
<style name="TextAppearance.StatusBar.Icon" parent="@style/TextAppearance.StatusBar" />
<style name="TextAppearance.StatusBar.EventContent" parent="@style/TextAppearance.StatusBar">
<item name="textSize">[COLOR="Lime"]12.0sp[/COLOR]</item>
<item name="textStyle">[COLOR="RoyalBlue"]italic[/COLOR]</item>
<item name="textColor">[COLOR="Red"]#ffffffff[/COLOR]</item>
</style>
the green text for text size
blue text for text style, you can change to normal,bold,italic or bold|italic
and red text for text color you want
second line still in styles.xml
Code:
<style name="TextAppearance.StatusBar.[COLOR="Red"]EventContent.Title[/COLOR]" parent="@style/TextAppearance.StatusBar.EventContent">
<item name="textSize">16.0sp</item>
<item name="textStyle">bold</item>
<item name="textColor">#ffffffff</item>
</style>
than change it like in first line
save and exit
recompile your framework
for fourth line you need decompile SystemUI.apk it self
than go to res/values/drawables.xml
Code:
<item type="drawable" name="notification_item_background_color">[COLOR="Red"]#00000000[/COLOR]</item>
<item type="drawable" name="notification_item_background_color_pressed">[COLOR="Blue"]#ff257390[/COLOR]</item>
red text for a normal background
and blue text for pressed background
if you want to change with png file (like in MIUI style)
you must make some 9.png file and rename to 'notification_item_background_color' than copy to res/drawable-hdpi
delete line
Code:
<item type="drawable" name="notification_item_background_color">#00000000</item>
Hi, I have installed new ROM after which my LockScreen Clock is over lapping with the Status bar.
whenever Lock is of PIN type and PASSWORD type. (PATTERN type is working fine)
When I try entering password, The TextField doesn't move up (like it moves up is Stock ROM.),
as a result TextField overlaps with the Keyboard.
I have attached the Screenshot of all.
Can you please help me to solve this issue?