I just found the trick to manipulate carrier label on notification bar when I'm exploring decompiled stock based SystemUI.apk few hours ago..
Wanna know how to do that ??
Check this out :
Here I'm using lidroid's modified SystemUI (from RealICS ROM), should work on other stock based SystemUI
The result will be looked like this :
Mine :

Wanna know how to do that ??
Check this out :
Here I'm using lidroid's modified SystemUI (from RealICS ROM), should work on other stock based SystemUI
- First you need to decompile your SystemUI.apk
- Open res/layout/status_bar_tracking.xml with any good xml editor (here I'm using NP++)
- Find this line:
and change to:Code:<com.android.systemui.statusbar.phone.CarrierLabel android:textAppearance="@style/TextAppearance.StatusBar.Clock" android:textColor="#ff33b5e5" android:gravity="center" android:layout_gravity="bottom" android:paddingBottom="20.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content" />
Code:<textView android:text="@string/carrier_label" android:textAppearance="@style/TextAppearance.StatusBar.Clock" android:textColor="#ff33b5e5" android:gravity="center" android:layout_gravity="bottom" android:paddingBottom="20.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content" /> - Save
- Now open res/values/strings.xml
- Add this line above </resources> :
so it'll be looked a like this:Code:<string name="carrier_label">ENTER_YOUR_COOLEST_TEXT_HERE</string>
p.s. : change the ENTER_YOUR_COOLEST_TEXT_HERE with your desired labelCode:<string name="carrier_label">ENTER_YOUR_COOLEST_TEXT_HERE</string> </resources>
- Now save
- Recompile (build) your SystemUI.apk
- Push to your phone and you are.......
- Done !!
The result will be looked like this :
Mine :
Good luck..Remember to
ALWAYS MAKE BACKUP !!
before doing anything above..
I don't responsible of any negative things like bootloop, bricked device, burned SD card, you late to go to school, or the third world war caused by the guide above..
You have been warned !!
Attachments
-
60 KB Views: 10,948
-
90 KB Views: 10,895