Here is a quick guide on how to remove the bloatet Samsung QuickSettings from the notification area.
This screenshots show what this guide should help you achieve:
Before:

(I'm using enox reVenge. So my Notification QuickSettings look a little different than the stock version)
After:

So here is how I did it:
Prerequirements:
- a rooted ROM
- apktool.jar, helper-script for your OS and aapt (get them from code.google.com/p/android-apktool/ and throw them all into one folder)
Decompile:
Get /system/app/SystemUI.apk and /system/framework/framework-res.apk from your phone
Then install framework and decompile SystemUI.apk
Additionally unzip the SystemUI.apk and get the META-INF folder and the AndroidManifest.xml file. Save them somewhere for later.
Modify (aka: the interesting part):
In SystemUI/res/values/dimens.xml change all values starting with "quick_setting_button_" to "0.0dip"
For me this was changing
to
Recompile:
- go to the newly created SystemUI/build/apk/
- paste the META-INF folder and AndroidManifest.xml file which you unziped earlier here (overwriting the existing AndroidManifest.xml)
- do another:
(will be faster than the first run)
Install:
- get your modded SystemUI.apk in SystemUI/dist/
- move it to your phone (to /system/app/) (this requires R/W access to /system. One way to get this is starting CWM)
- start CWM and mount /system
- change the permissions to 644
DONE
This screenshots show what this guide should help you achieve:
Before:

(I'm using enox reVenge. So my Notification QuickSettings look a little different than the stock version)
After:

So here is how I did it:
Prerequirements:
- a rooted ROM
- apktool.jar, helper-script for your OS and aapt (get them from code.google.com/p/android-apktool/ and throw them all into one folder)
Decompile:
Get /system/app/SystemUI.apk and /system/framework/framework-res.apk from your phone
Code:
adb pull /system/app/SystemUI.apk
adb pull /system/framework/framework-res.apk
Code:
apktool if framework-res.apk
apktool d SystemUi.apk
Modify (aka: the interesting part):
In SystemUI/res/values/dimens.xml change all values starting with "quick_setting_button_" to "0.0dip"
For me this was changing
Code:
<dimen name="quick_setting_button_height">80.0dip</dimen>
<dimen name="quick_setting_button_image_height">40.0dip</dimen>
<dimen name="quick_setting_button_text_height">30.0dip</dimen>
<dimen name="quick_setting_button_text_size">12.0dip</dimen>
<dimen name="quick_setting_button_status_height">8.0dip</dimen>
<dimen name="quick_setting_button_status_padding">2.0dip</dimen>
<dimen name="quick_setting_button_margin_top">2.0dip</dimen>
Code:
<dimen name="quick_setting_button_height">0.0dip</dimen>
<dimen name="quick_setting_button_image_height">0.0dip</dimen>
<dimen name="quick_setting_button_text_height">0.0dip</dimen>
<dimen name="quick_setting_button_text_size">0.0dip</dimen>
<dimen name="quick_setting_button_status_height">0.0dip</dimen>
<dimen name="quick_setting_button_status_padding">0.0dip</dimen>
<dimen name="quick_setting_button_margin_top">0.0dip</dimen>
Code:
apktool b SystemUI
- paste the META-INF folder and AndroidManifest.xml file which you unziped earlier here (overwriting the existing AndroidManifest.xml)
- do another:
Code:
apktool b SystemUI
Install:
- get your modded SystemUI.apk in SystemUI/dist/
- move it to your phone (to /system/app/) (this requires R/W access to /system. One way to get this is starting CWM)
- start CWM and mount /system
Code:
adb push SystemUI.apk /system/app/
Code:
adb shell
chmod 644 /system/app/SystemUI.apk
reboot
Last edited: