Ryebread761's idea of rotating the Wifi signal icon is genius! (for the uninitiated, it uses an Xposed module to hook the layout call from SystemUI and rotate the Wifi signal icon before drawing.)
So I'm replicating this for the Cell Signal strength. Since we're the one receiving the signal strength from the tower, the POV should reflect this, like the Wifi icon does after Ryebread's mod.
As far as I can tell all I can do is rotate/mirror images. That works fine for this:
which turns into this
but not for this:
because when I rotate it, it's upside down.
Please note that using setPadding looks like it's causing the ImageView to scale down/get smaller/or something!
If you want to translate the ImageView
instead of rotate it, use the setTranslationX()
and setTranslationY()
view property methods.