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

Themes mods

I got the toggles is there a way to change them or put them in another order and I changed my status bar icons but I dont see how to choose with one you want I also got the you tube downloader and inverted play store do you have those
 
I haven't messed with the order of the toggles, but I am sure a little editing could fix that if I want. I also manually edited my feature.xml to give me the camera sound option and also the slids transition effect for the home screen.
 
I haven't messed with the order of the toggles, but I am sure a little editing could fix that if I want. I also manually edited my feature.xml to give me the camera sound option and also the slids transition effect for the home screen.

How do you do the slids transition effect
 
I edited the Feature.xml file for the slide effect which is in /system/csc. In the section for launcher, the line CscFeature_Launcher_DisableTiltEffect, change the "true" to false. then save the file. Make sure you set the read write permissions back to the way they were for the file before you edited it (rw,r,r), then reboot.
 
  • Like
Reactions: Doc
I got the toggles is there a way to change them or put them in another order and I changed my status bar icons but I dont see how to choose with one you want I also got the you tube downloader and inverted play store do you have those

To rearrange the toggles you have to decompile SystemUI, then go to res\values and open arrays.xml

find

<string-array name="QuickSettingButtonAttribute">
<item>Wifi</item>
<item>Bluetooth</item>
<item>Location</item>
<item>SilentMode</item>
<item>Wimax</item>
<item>Sync</item>

</string-array>

(and rearrange the order of the toggles marked in red to the order of your choice )

Example

<string-array name="QuickSettingButtonAttribute">
<item>SilentMode</item>
<item>Bluetooth</item>
<item>Sync</item>
<item>Wimax</item>
<item>Wifi</item>
<item>Location</item>

</string-array>
 
Back
Top Bottom