On my S3/NeatROM/4.3 this is set in:Can anyone please help me change the way my phone shows the current Date in the Notification bar?
PS: I think its in SystemUI.apk.. Maybe some smali files needs to be edited... like DateView.smali or R$string.smali ot some other smali file perhapsI did do some "editing" here and there but that didn't help me either.. And here's a picture to make this look more clear:
![]()
(I know that this is not the proper place to post my request and I'm sorry for that)
SystemUI.apk\res\values\strings.xml
The line to edit depends on what date format you have set on your phone.
It ought to be either
Code:
<string name="status_bar_date_format_day_month">"
EEE, d MMMM"</string>
Code:
<string name="status_bar_date_format_month_day">"
EEE, MMMM d"</string>
The style is set in SystemUI.apk\res\values\styles.xml
<style name="TextAppearance.StatusBar.Expanded.Date"...
Of course, it may be completely different on your device and setup...