23rd March 2012, 06:04 PM
(Last edited by Master&Slave™; 23rd March 2012 at 06:16 PM .)
Recognized Developer -
OP
Thanks Meter
2635
Posts: 3,118
Join Date: Feb 2011
Location: Philadelphia
DONATE TO ME
StatusBar Tweaks \(^_^\)
Hello Guys im Master&Slave™ and im going to show you a few Status bar Mods. Right now I own a T-Mobile Galaxy S II so these MODs are based on the Samsung Touchwiz 2.3.6 Systemui.apk .
This may or may not work for your phone, im not very sure but its knowledge worth sharing .
You could try copy and pasting these codes to your XMLs and see if they work. Like I stated I dont know if they will wok on all devices so the code may vary depending on your device.
Lets get started :)
Requirements
-Brain
-Patience
-A tool to decompile the Systemui.apk
-Notepad++
StatusBar.xml only
Center Clock
-
This will move your clock to the center of the status bar
Code:
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.StatusBarView android:orientation="vertical" android:background="#ff000000" android:focusable="true" android:descendantFocusability="afterDescendants"
xmlns:android="http://schemas.android.com/apk/res/android">
<com.android.systemui.statusbar.Clock android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:textSize="16.0sp" android:gravity="center" android:id="@id/clock" android:paddingRight="6.0dip" android:layout_width="fill_parent" android:layout_height="fill_parent" android:singleLine="true" />
<LinearLayout android:orientation="horizontal" android:id="@id/icons" android:layout_width="fill_parent" android:layout_height="fill_parent">
<com.android.systemui.statusbar.IconMerger android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/notificationIcons" android:paddingLeft="6.0dip" android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_weight="1.0" android:layout_alignParentLeft="true" />
<LinearLayout android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/statusIcons" android:paddingRight="6.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentRight="true" />
</LinearLayout>
<LinearLayout android:orientation="horizontal" android:id="@id/ticker" android:paddingLeft="6.0dip" android:animationCache="false" android:layout_width="fill_parent" android:layout_height="fill_parent">
<ImageSwitcher android:id="@id/tickerIcon" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_marginRight="8.0dip">
<com.android.systemui.statusbar.AnimatedImageView android:layout_width="25.0dip" android:layout_height="25.0dip" />
<com.android.systemui.statusbar.AnimatedImageView android:layout_width="25.0dip" android:layout_height="25.0dip" />
</ImageSwitcher>
<com.android.systemui.statusbar.TickerView android:id="@id/tickerText" android:paddingTop="2.0dip" android:paddingRight="10.0dip" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_weight="1.0">
<TextView android:textAppearance="@android:style/TextAppearance.StatusBar.Ticker" android:id="@id/ticker_1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
<TextView android:textAppearance="@android:style/TextAppearance.StatusBar.Ticker" android:id="@id/ticker_2" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
</com.android.systemui.statusbar.TickerView>
</LinearLayout>
<com.android.systemui.statusbar.DateView android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:gravity="left|center" android:id="@id/date" android:background="#ff000000" android:paddingLeft="6.0px" android:paddingRight="6.0px" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
</com.android.systemui.statusbar.StatusBarView>
No Clock
-
This will remove the clock from the status bar
Code:
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.StatusBarView android:orientation="vertical" android:background="#ff000000" android:focusable="true" android:descendantFocusability="afterDescendants"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout android:orientation="horizontal" android:id="@id/icons" android:layout_width="fill_parent" android:layout_height="fill_parent">
<com.android.systemui.statusbar.IconMerger android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/notificationIcons" android:paddingLeft="6.0dip" android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_weight="1.0" android:layout_alignParentLeft="true" />
<LinearLayout android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/statusIcons" android:paddingRight="6.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentRight="true" />
</LinearLayout>
<LinearLayout android:orientation="horizontal" android:id="@id/ticker" android:paddingLeft="6.0dip" android:animationCache="false" android:layout_width="fill_parent" android:layout_height="fill_parent">
<ImageSwitcher android:id="@id/tickerIcon" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_marginRight="8.0dip">
<com.android.systemui.statusbar.AnimatedImageView android:layout_width="25.0dip" android:layout_height="25.0dip" />
<com.android.systemui.statusbar.AnimatedImageView android:layout_width="25.0dip" android:layout_height="25.0dip" />
</ImageSwitcher>
<com.android.systemui.statusbar.TickerView android:id="@id/tickerText" android:paddingTop="2.0dip" android:paddingRight="10.0dip" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_weight="1.0">
<TextView android:textAppearance="@android:style/TextAppearance.StatusBar.Ticker" android:id="@id/ticker_1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
<TextView android:textAppearance="@android:style/TextAppearance.StatusBar.Ticker" android:id="@id/ticker_2" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
</com.android.systemui.statusbar.TickerView>
</LinearLayout>
<com.android.systemui.statusbar.DateView android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:gravity="left|center" android:id="@id/date" android:background="#ff000000" android:paddingLeft="6.0px" android:paddingRight="6.0px" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
</com.android.systemui.statusbar.StatusBarView>
No Date
-
This will remove the date from the status bar
Code:
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.StatusBarView android:orientation="vertical" android:background="#ff000000" android:focusable="true" android:descendantFocusability="afterDescendants"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout android:orientation="horizontal" android:id="@id/icons" android:layout_width="fill_parent" android:layout_height="fill_parent">
<com.android.systemui.statusbar.IconMerger android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/notificationIcons" android:paddingLeft="6.0dip" android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_weight="1.0" android:layout_alignParentLeft="true" />
<LinearLayout android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/statusIcons" android:paddingRight="6.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentRight="true" />
<com.android.systemui.statusbar.Clock android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:textSize="16.0sp" android:gravity="center_vertical" android:id="@id/clock" android:paddingRight="6.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
</LinearLayout>
<LinearLayout android:orientation="horizontal" android:id="@id/ticker" android:paddingLeft="6.0dip" android:animationCache="false" android:layout_width="fill_parent" android:layout_height="fill_parent">
<ImageSwitcher android:id="@id/tickerIcon" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_marginRight="8.0dip">
<com.android.systemui.statusbar.AnimatedImageView android:layout_width="25.0dip" android:layout_height="25.0dip" />
<com.android.systemui.statusbar.AnimatedImageView android:layout_width="25.0dip" android:layout_height="25.0dip" />
</ImageSwitcher>
<com.android.systemui.statusbar.TickerView android:id="@id/tickerText" android:paddingTop="2.0dip" android:paddingRight="10.0dip" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_weight="1.0">
<TextView android:textAppearance="@android:style/TextAppearance.StatusBar.Ticker" android:id="@id/ticker_1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
<TextView android:textAppearance="@android:style/TextAppearance.StatusBar.Ticker" android:id="@id/ticker_2" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
</com.android.systemui.statusbar.TickerView>
</LinearLayout>
</com.android.systemui.statusbar.StatusBarView>
Statusbar_Expanded.xml Only
Pulldown Clock|Center Clear Button
-
This will remove the clock from the statusbar and place it where the clear button originally sits, moving the clear button to the middle of the pulldown under your notifications . To do this you must first remove the clock code from the statusbar.xml. You will see an example of this in the code below
Code:
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.ExpandedView android:orientation="vertical" android:focusable="true" android:descendantFocusability="afterDescendants"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout android:orientation="horizontal" android:id="@id/carrier_label_background" android:background="@drawable/title_bar_portrait" android:layout_width="fill_parent" android:layout_height="wrap_content" android:baselineAligned="false">
<com.android.systemui.statusbar.CarrierLabel android:textSize="18.659973dip" android:textColor="@color/status_bar_carrier_label_text" android:layout_gravity="center_vertical" android:id="@id/carrier_label" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_marginLeft="14.669983dip" android:layout_marginTop="8.669983dip" android:layout_marginBottom="10.0dip" android:layout_weight="1.0" />
<com.android.systemui.statusbar.Clock android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:textSize="16.0sp" android:gravity="center_vertical" android:id="@id/clock" android:paddingRight="6.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
</LinearLayout>
<FrameLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1.0">
<ScrollView android:id="@id/scroll" android:fadingEdge="none" android:layout_width="fill_parent" android:layout_height="fill_parent" android:overScrollMode="ifContentScrolls">
<com.android.systemui.statusbar.NotificationLinearLayout android:orientation="vertical" android:id="@id/notificationLinearLayout" android:layout_width="fill_parent" android:layout_height="wrap_content">
<TextView android:textSize="14.669983dip" android:textColor="@color/notification_header_text_color" android:gravity="center_vertical" android:id="@id/noNotificationsTitle" android:background="@drawable/quickpanel_title_background" android:paddingLeft="13.329987dip" android:layout_width="fill_parent" android:layout_height="26.669983dip" android:text="@string/status_bar_no_notifications_title" />
<TextView android:textSize="14.669983dip" android:textColor="@color/notification_header_text_color" android:gravity="center_vertical" android:id="@id/ongoingTitle" android:background="@drawable/quickpanel_title_background" android:paddingLeft="13.329987dip" android:layout_width="fill_parent" android:layout_height="26.669983dip" android:text="@string/status_bar_ongoing_events_title" />
<LinearLayout android:orientation="vertical" android:id="@id/ongoingItems" android:layout_width="fill_parent" android:layout_height="wrap_content" />
<TextView android:textSize="14.669983dip" android:textColor="@color/notification_header_text_color" android:gravity="center_vertical" android:id="@id/latestTitle" android:background="@drawable/quickpanel_title_background" android:paddingLeft="13.329987dip" android:layout_width="fill_parent" android:layout_height="26.669983dip" android:text="@string/status_bar_latest_events_title" />
<LinearLayout android:orientation="vertical" android:id="@id/latestItems" android:layout_width="fill_parent" android:layout_height="wrap_content" />
<TextView android:textSize="14.0dip" android:textColor="@color/status_bar_clear_all_button_text" android:gravity="center" android:layout_gravity="center_vertical" android:id="@id/clear_all_button" android:background="@drawable/btn_default_small" android:focusable="true" android:clickable="true" android:layout_width="76.66998dip" android:layout_height="34.0dip" android:layout_marginTop="5.0dip" android:layout_marginRight="4.0dip" android:layout_marginBottom="5.0dip" android:text="@string/status_bar_clear_all_button" />
</com.android.systemui.statusbar.NotificationLinearLayout>
</ScrollView>
<ImageView android:id="@id/title_bar_shadow" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="fill_parent" android:src="@drawable/title_bar_shadow" android:scaleType="fitXY" />
</FrameLayout>
</com.android.systemui.statusbar.ExpandedView>
Center Clear Button
-
This will just put your clear in the middle of the pulldown under your notifications.
Code:
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.ExpandedView android:orientation="vertical" android:focusable="true" android:descendantFocusability="afterDescendants"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout android:orientation="horizontal" android:id="@id/carrier_label_background" android:background="@drawable/title_bar_portrait" android:layout_width="fill_parent" android:layout_height="wrap_content" android:baselineAligned="false">
<com.android.systemui.statusbar.CarrierLabel android:textSize="18.659973dip" android:textColor="@color/status_bar_carrier_label_text" android:layout_gravity="center_vertical" android:id="@id/carrier_label" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_marginLeft="14.669983dip" android:layout_marginTop="8.669983dip" android:layout_marginBottom="10.0dip" android:layout_weight="1.0" />
</LinearLayout>
<FrameLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1.0">
<ScrollView android:id="@id/scroll" android:fadingEdge="none" android:layout_width="fill_parent" android:layout_height="fill_parent" android:overScrollMode="ifContentScrolls">
<com.android.systemui.statusbar.NotificationLinearLayout android:orientation="vertical" android:id="@id/notificationLinearLayout" android:layout_width="fill_parent" android:layout_height="wrap_content">
<TextView android:textSize="14.669983dip" android:textColor="@color/notification_header_text_color" android:gravity="center_vertical" android:id="@id/noNotificationsTitle" android:background="@drawable/quickpanel_title_background" android:paddingLeft="13.329987dip" android:layout_width="fill_parent" android:layout_height="26.669983dip" android:text="@string/status_bar_no_notifications_title" />
<TextView android:textSize="14.669983dip" android:textColor="@color/notification_header_text_color" android:gravity="center_vertical" android:id="@id/ongoingTitle" android:background="@drawable/quickpanel_title_background" android:paddingLeft="13.329987dip" android:layout_width="fill_parent" android:layout_height="26.669983dip" android:text="@string/status_bar_ongoing_events_title" />
<LinearLayout android:orientation="vertical" android:id="@id/ongoingItems" android:layout_width="fill_parent" android:layout_height="wrap_content" />
<TextView android:textSize="14.669983dip" android:textColor="@color/notification_header_text_color" android:gravity="center_vertical" android:id="@id/latestTitle" android:background="@drawable/quickpanel_title_background" android:paddingLeft="13.329987dip" android:layout_width="fill_parent" android:layout_height="26.669983dip" android:text="@string/status_bar_latest_events_title" />
<LinearLayout android:orientation="vertical" android:id="@id/latestItems" android:layout_width="fill_parent" android:layout_height="wrap_content" />
<TextView android:textSize="14.0dip" android:textColor="@color/status_bar_clear_all_button_text" android:gravity="center" android:layout_gravity="center_vertical" android:id="@id/clear_all_button" android:background="@drawable/btn_default_small" android:focusable="true" android:clickable="true" android:layout_width="76.66998dip" android:layout_height="34.0dip" android:layout_marginTop="5.0dip" android:layout_marginRight="4.0dip" android:layout_marginBottom="5.0dip" android:text="@string/status_bar_clear_all_button" />
</com.android.systemui.statusbar.NotificationLinearLayout>
</ScrollView>
<ImageView android:id="@id/title_bar_shadow" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="fill_parent" android:src="@drawable/title_bar_shadow" android:scaleType="fitXY" />
</FrameLayout>
</com.android.systemui.statusbar.ExpandedView>
Remove Carrier Text
-
This will remove the carrier text from the pulldown, however this may not work for none Tmobile phones because they may have their carrier text in a different location .
Code:
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.ExpandedView android:orientation="vertical" android:focusable="true" android:descendantFocusability="afterDescendants"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout android:orientation="horizontal" android:id="@id/carrier_label_background" android:background="@drawable/title_bar_portrait" android:layout_width="fill_parent" android:layout_height="wrap_content" android:baselineAligned="false">
<TextView android:textSize="14.0dip" android:textColor="@color/status_bar_clear_all_button_text" android:gravity="center" android:layout_gravity="center_vertical" android:id="@id/clear_all_button" android:background="@drawable/btn_default_small" android:focusable="true" android:clickable="true" android:layout_width="76.66998dip" android:layout_height="34.0dip" android:layout_marginTop="5.0dip" android:layout_marginRight="4.0dip" android:layout_marginBottom="5.0dip" android:text="@string/status_bar_clear_all_button" />
</LinearLayout>
<FrameLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1.0">
<ScrollView android:id="@id/scroll" android:fadingEdge="none" android:layout_width="fill_parent" android:layout_height="fill_parent" android:overScrollMode="ifContentScrolls">
<com.android.systemui.statusbar.NotificationLinearLayout android:orientation="vertical" android:id="@id/notificationLinearLayout" android:layout_width="fill_parent" android:layout_height="wrap_content">
<TextView android:textSize="14.669983dip" android:textColor="@color/notification_header_text_color" android:gravity="center_vertical" android:id="@id/noNotificationsTitle" android:background="@drawable/quickpanel_title_background" android:paddingLeft="13.329987dip" android:layout_width="fill_parent" android:layout_height="26.669983dip" android:text="@string/status_bar_no_notifications_title" />
<TextView android:textSize="14.669983dip" android:textColor="@color/notification_header_text_color" android:gravity="center_vertical" android:id="@id/ongoingTitle" android:background="@drawable/quickpanel_title_background" android:paddingLeft="13.329987dip" android:layout_width="fill_parent" android:layout_height="26.669983dip" android:text="@string/status_bar_ongoing_events_title" />
<LinearLayout android:orientation="vertical" android:id="@id/ongoingItems" android:layout_width="fill_parent" android:layout_height="wrap_content" />
<TextView android:textSize="14.669983dip" android:textColor="@color/notification_header_text_color" android:gravity="center_vertical" android:id="@id/latestTitle" android:background="@drawable/quickpanel_title_background" android:paddingLeft="13.329987dip" android:layout_width="fill_parent" android:layout_height="26.669983dip" android:text="@string/status_bar_latest_events_title" />
<LinearLayout android:orientation="vertical" android:id="@id/latestItems" android:layout_width="fill_parent" android:layout_height="wrap_content" />
</com.android.systemui.statusbar.NotificationLinearLayout>
</ScrollView>
<ImageView android:id="@id/title_bar_shadow" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="fill_parent" android:src="@drawable/title_bar_shadow" android:scaleType="fitXY" />
</FrameLayout>
</com.android.systemui.statusbar.ExpandedView>
-If you are going to use these in your ROMs or Themes be sure to do so, Credit is all I ask for. Dont forget to hit the Thanks
Join the
OXYGEN Facebook Group .
Contact me @
est1692@gmail.com
Everyone check out my YouTube Channel and please throw in a sub if you have an account.
Also Check out my Android Theming Videos Located Here
The Following 131 Users Say Thank You to Master&Slave™ For This Useful Post: [ Click to Expand ]
aalupatti (25th May 2012),
achyut (10th October 2012),
Aeonit (5th June 2012),
amansingh6940 (28th March 2012),
andlkk (22nd March 2013),
andr00ib (5th April 2012),
apena325 (18th August 2012),
appdroid (11th April 2012),
Att.Fan1982 (19th April 2012),
Avilove.Cullen (26th July 2012),
Babyj303 (24th March 2012),
bchon (6th April 2012),
bigchrizzieboy (6th September 2012),
castaway1 (28th March 2012),
ChavitoArg (6th April 2012),
cheqolada (14th August 2012),
Cyb0rgz (26th October 2012),
Cyb3r5p4c3 (29th September 2012),
Dan_Brutal (23rd March 2012),
daxgirl (12th February 2013),
dheeraj (dhlalit11) (14th September 2012),
DigitalJedi (27th March 2012),
dillym34 (17th April 2012),
dr30ma (18th January 2013),
eddykuhan (6th August 2012),
emannxperia (25th March 2012),
emilsk1e (30th April 2013),
epicnoob66 (17th June 2012),
ErnestMBE (23rd March 2012),
eronink (21st October 2012),
essi_baba (24th June 2012),
ExNeoDev (3rd May 2013),
fender90 (28th March 2012),
FilipeMoritz (25th March 2012),
forever king (24th August 2012),
GEKTHEBOSS (23rd March 2012),
granduke (23rd March 2012),
grayn0de (29th April 2012),
GreyDark (6th April 2012),
GuneetAtwal (7th December 2012),
Harpratap (25th March 2012),
Hetalk (8th September 2012),
iJimaniac (18th October 2012),
IllBill (23rd March 2012),
IMTLD (24th October 2012),
incaner (18th May 2013),
indyend (30th March 2012),
iPapun (28th March 2012),
itzallgood707 (25th March 2012),
Izzy Stinson (17th June 2012),
jacky_kjzz (26th July 2012),
jager13 (8th December 2012),
jamieg71 (16th August 2012),
janarthanan.v (1st September 2012),
janreytuazon15 (14th November 2012),
jared407 (4th October 2012),
jayjay1234 (25th March 2012),
jazib360 (15th August 2012),
jhonybravo4u (27th March 2012),
jmorrisson84 (12th February 2013),
jose51197 (18th May 2013),
joshva (17th August 2012),
juan77_sonic (27th January 2013),
karanrajpal14 (28th October 2012),
kentoi me (9th April 2012),
khiogie (27th April 2012),
King_Paladin (24th March 2012),
kissingmylove (23rd October 2012),
kobellza (7th April 2012),
la041212 (21st April 2013),
leventccc (16th April 2012),
le_manhpro (13th November 2012),
LiLChris06 (30th April 2012),
Linq'z QIrls'z Chinese (31st January 2013),
lokeshsaini94 (20th October 2012),
Lopicl.00 (19th May 2013),
lordkiel (28th October 2012),
manekineko (23rd March 2012),
masamichi7 (30th March 2012),
MatZ69 (23rd May 2012),
MaxAndroided (22nd March 2013),
Mazzen.kh (4th January 2013),
mdfaisal (26th March 2012),
medoooooo (6th August 2012),
Meelouw (10th December 2012),
molimo (18th June 2012),
mrappbrain (24th October 2012),
n3cc3rs (23rd March 2012),
Nar4 (6th June 2012),
Nemotatu (10th February 2013),
nicandris (7th August 2012),
noobdroid_90 (15th August 2012),
nrgmalik (7th October 2012),
OS_Hacking (4th January 2013),
pain89 (13th November 2012),
Patrics83 (24th March 2012),
Pete1612 (27th March 2012),
PixeLuL (8th June 2012),
Planters76 (19th September 2012),
prototype-U (17th June 2012),
pulley06 (5th April 2013),
rajibie (27th July 2012),
rmg2 (6th June 2012),
ron194 (9th September 2012),
roxtreeme (23rd January 2013),
rsabaybay (26th November 2012),
scott7175 (30th April 2012),
sevenup30 (6th September 2012),
shiftyHungary (2nd August 2012),
shreyas.kukde (3rd May 2012),
Silvane (29th March 2012),
sinamosavi (30th March 2012),
sincem (9th June 2012),
Sir Otto (17th July 2012),
Sobaro (28th October 2012),
srinath2912 (2nd July 2012),
starskyrob (23rd March 2012),
tattoowood (3rd September 2012),
The_animaToR (13th November 2012),
Ticklefish (29th March 2012),
Typhus_ (21st April 2013),
umarian (27th May 2012),
UpGado (26th July 2012),
vasilisxxx (23rd March 2012),
voodoons (26th May 2012),
vuidoi (2nd August 2012),
waynekirby (6th May 2012),
x-dira (27th July 2012),
xcxa23 (17th April 2012),
xmc wildchild22 (10th April 2012),
ZiViTi_13 (23rd March 2012)
23rd March 2012, 06:07 PM
Recognized Developer -
OP
Thanks Meter
2635
Posts: 3,118
Join Date: Feb 2011
Location: Philadelphia
DONATE TO ME
Reserved!
....
Join the
OXYGEN Facebook Group .
Contact me @
est1692@gmail.com
Everyone check out my YouTube Channel and please throw in a sub if you have an account.
Also Check out my Android Theming Videos Located Here
The Following 6 Users Say Thank You to Master&Slave™ For This Useful Post: [ Click to Expand ]
23rd March 2012, 06:09 PM
Senior Member
Thanks Meter
100
Posts: 107
Join Date: Jun 2011
Location: Nikolaev
I need more! ))
23rd March 2012, 06:12 PM
Recognized Developer -
OP
Thanks Meter
2635
Posts: 3,118
Join Date: Feb 2011
Location: Philadelphia
DONATE TO ME
Quote:
Originally Posted by
ZiViTi_13
I need more! ))
I gotta play around more with the code, Ill update this with whatever I come up with!
Join the
OXYGEN Facebook Group .
Contact me @
est1692@gmail.com
Everyone check out my YouTube Channel and please throw in a sub if you have an account.
Also Check out my Android Theming Videos Located Here
The Following 2 Users Say Thank You to Master&Slave™ For This Useful Post: [ Click to Expand ]
23rd March 2012, 06:15 PM
Senior Member
Thanks Meter
29
Posts: 258
Join Date: Jun 2011
Location: Miami
Sweet..time for me to learn how to decompile the systemui...looks like rocket science to me lol..Thanks!
Current Phone :SGS2
Current Rom :AOKP Official JB MR1 Build 6
Current Kernel :Cerux Kernel v1.46
Xbox GT: BIGboyKHD
add me
23rd March 2012, 06:17 PM
Recognized Developer -
OP
Thanks Meter
2635
Posts: 3,118
Join Date: Feb 2011
Location: Philadelphia
DONATE TO ME
Quote:
Originally Posted by
IllBill
Sweet..time for me to learn how to decompile the systemui...looks like rocket science to me lol..Thanks!
If you can copy and paste, then rocket science is a thing of the past lol
Join the
OXYGEN Facebook Group .
Contact me @
est1692@gmail.com
Everyone check out my YouTube Channel and please throw in a sub if you have an account.
Also Check out my Android Theming Videos Located Here
23rd March 2012, 06:22 PM
Senior Member
Thanks Meter
29
Posts: 258
Join Date: Jun 2011
Location: Miami
Quote:
Originally Posted by
Master&Slave™
If you can copy and paste, then rocket science is a thing of the past lol
Gonna follow your famous line and actually learn something today lol gonna try these out in a few
Current Phone :SGS2
Current Rom :AOKP Official JB MR1 Build 6
Current Kernel :Cerux Kernel v1.46
Xbox GT: BIGboyKHD
add me
23rd March 2012, 06:24 PM
Recognized Developer -
OP
Thanks Meter
2635
Posts: 3,118
Join Date: Feb 2011
Location: Philadelphia
DONATE TO ME
Quote:
Originally Posted by
IllBill
Gonna follow your famous line and actually learn something today lol gonna try these out in a few
Iight be sure to study the codes and learn how they work
Join the
OXYGEN Facebook Group .
Contact me @
est1692@gmail.com
Everyone check out my YouTube Channel and please throw in a sub if you have an account.
Also Check out my Android Theming Videos Located Here
23rd March 2012, 07:43 PM
Member
Thanks Meter
14
Posts: 67
Join Date: Apr 2011
Location: California
"Church..."
LG Nexus 4 (Mako/E960)
[ROM]: Xylon_Mako-Official_v2.7 [4.2.2]
[Kernel]: *Matr1x* v8.5
[Modem]: M9615A-2.0.1700.33
[Recovery]: ClockworkMod Touch v6.0.2.3
[Cloud Storage] Dropbox (3GB) * Google Drive (5GB) * SugarSync (5.5GB) * Box (50GB)
---------------------------------
Retired :
T- Mobile Samsung Galaxy S II (Hercules/SGH-T989)
Nokia N900 32GB [Unlocked]
23rd March 2012, 07:44 PM
Recognized Developer -
OP
Thanks Meter
2635
Posts: 3,118
Join Date: Feb 2011
Location: Philadelphia
DONATE TO ME
Quote:
Originally Posted by
scribbles92
"Church..."
Im not sure i follow you lol
M&S
Join the
OXYGEN Facebook Group .
Contact me @
est1692@gmail.com
Everyone check out my YouTube Channel and please throw in a sub if you have an account.
Also Check out my Android Theming Videos Located Here
The Following User Says Thank You to Master&Slave™ For This Useful Post: [ Click to Expand ]
Thread Tools
Search this Thread
Display Modes
Linear Mode
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
Go to top of page...
Most Thanked In This Thread
2 (quote) Do you have a
transparent … 2 Great guide! Much appreciate! 2 (quote)
I gotta play
around more with …