eucurto, on 17 September 2011 - 02:11 PM, said:
Ohh no....

you made such a terrible(this terrible means WONDERFULL) job here, but removing the 3G/G icon over signal bars is a no go for me... Can you make a scrollable version with this icons or explain how to add them back, please?
I removed this "feature" because I think it's useless and unpleasing for the eye.
To get it back you have to decompile SystemUI.apk with apktool. Edit res/values/bool.xml. You'll find:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="config_hspa_data_distinguishable">true</bool>
<bool name="config_edge_data_distinguishable">true</bool>
<bool name="config_signal_network_distinguishable">false</bool>
<bool name="config_gsm_network_distinguishable">false</bool>
<bool name="config_edge_network_distinguishable">false</bool>
<bool name="config_3g_network_distinguishable">false</bool>
<bool name="config_hspa_network_distinguishable">false</bool>
<bool name="config_roaming_network_distinguishable">true</bool>
</resources>
Change that so that boolean is set to true in every line. Compile with apktool, sign with test key, zipalign and push to phone.
If there are more reasonable requests I might still build another batch. Then there might be one coming for you too...
edit. Updated first post with few different scrollable versions (with five or six toggles on sight). There is now one with icons over signal bars too.
Edited by KonstaT, 18 September 2011 - 09:07 AM.