• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Root xml files for signal bar ???

smith058

Android Expert
anyone know where the xml files are for the signal bar? they are not in SystemUI.apk at all... however the roaming signal bars are???

i thought they would be in SystemUI.apk/res/drawable ... but they are not there... it has all the pngs needed in SystemUI.apk Folder/res/drawable-mdpi and has the roaming xml files (although we cant roam with boost)

??? Thanks :)
 
anyone know where the xml files are for the signal bar? they are not in SystemUI.apk at all... however the roaming signal bars are???

i thought they would be in SystemUI.apk/res/drawable ... but they are not there... it has all the pngs needed in SystemUI.apk Folder/res/drawable-mdpi and has the roaming xml files (although we cant roam with boost)

??? Thanks :)
I cant find em either... maybe it's a boost thing. maybe I can find out from somebody over in the prevail threads. I'll see what I can come up with
 
i cant find them in tframework.res.apk... i thought i did, but when i checked stock framework.res.apk they are not in there... thats why my last post was edited (cuz i posted that i found them), lol

im looking for 6 xml files that control the stock pngs for the signal bar so i can make them animated... the default pngs are here:

SystemUI-.apk\res\drawable-mdpi\
zz_stat_sys_signal_0.png
zz_stat_sys_signal_0_fully.png
zz_stat_sys_signal_1.png
zz_stat_sys_signal_1_fully.png
zz_stat_sys_signal_2.png
zz_stat_sys_signal_2_fully.png
zz_stat_sys_signal_3.png
zz_stat_sys_signal_3_fully.png
zz_stat_sys_signal_4.png
zz_stat_sys_signal_4_fully.png
zz_stat_sys_signal_5.png
zz_stat_sys_signal_5_fully.png
zz_stat_sys_signal_6.png
zz_stat_sys_signal_6_fully.png

i still cant fine the xml files that link to those pngs...

the roaming xml files look like this:

SystemUI-.apk\res\drawable\
zz_stat_sys_roaming_cdma_flash_0.xml
zz_stat_sys_roaming_cdma_flash_0_fully.xml
zz_stat_sys_roaming_cdma_flash_1.xml
zz_stat_sys_roaming_cdma_flash_1_fully.xml
... and so on till 6 ...

i think the non roaming xml files look like one of these file names
zz_stat_sys_cdma_0.xml ( 0-6 )
stat_sys_cdma_0.xml ( 0-6 )

(im making these up as an example of what i think they might be)



if you did find them you mind posting the path...

Thanks for the help
 
Yeah I messed up on that sorry, my transform framework.res.apk looks the same as yours. I grabbed a copy of my prevail framework i had saved by mistake. I use a prevail as my phone and have a transform ultra that im using to test for dev. and I grabbed the wrong one. Idk on this one..

the prevail .xmls are in framework but not the transform. I don't see any XMLs at all except for the roaming_cdma ones. sorry I couldn't be more help. I'll keep looking into this cuz now I have to know...
 
the only place i have found any reference to them at all is in the public.xml in systemui.apk

<public type="drawable" name="zz_stat_sys_signal_0" id="0x7f020097" />
<public type="drawable" name="zz_stat_sys_signal_0_fully" id="0x7f020098" />
<public type="drawable" name="zz_stat_sys_signal_1" id="0x7f020099" />
<public type="drawable" name="zz_stat_sys_signal_1_fully" id="0x7f02009a" />
<public type="drawable" name="zz_stat_sys_signal_2" id="0x7f02009b" />
<public type="drawable" name="zz_stat_sys_signal_2_fully" id="0x7f02009c" />
<public type="drawable" name="zz_stat_sys_signal_3" id="0x7f02009d" />
<public type="drawable" name="zz_stat_sys_signal_3_fully" id="0x7f02009e" />
<public type="drawable" name="zz_stat_sys_signal_4" id="0x7f02009f" />
<public type="drawable" name="zz_stat_sys_signal_4_fully" id="0x7f0200a0" />
<public type="drawable" name="zz_stat_sys_signal_5" id="0x7f0200a1" />
<public type="drawable" name="zz_stat_sys_signal_5_fully" id="0x7f0200a2" />
<public type="drawable" name="zz_stat_sys_signal_6" id="0x7f0200a3" />
<public type="drawable" name="zz_stat_sys_signal_6_fully" id="0x7f0200a4" />
<public type="drawable" name="zz_stat_sys_signal_flightmode" id="0x7f0200a5" />
<public type="drawable" name="zz_stat_sys_signal_null" id="0x7f0200a6" />
 
i found them too... im not smart enough to trace where the ids lead ( id="0x7f020097" /> )

besides these all the other individual states come in a xml file of its own and the code looks like this: (im smart enough to follow and edit/chang that)

<?xml version="1.0" encoding="utf-8"?>
<animation-list android:oneshot="true"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:duration="500" android:drawable="@drawable/cdma_sys_6signal_0_anim0" />
</animation-list>
 
Back
Top Bottom