[MOD] [GUIDE] Custom Notif Panel BG [TESTED] - Samsung Galaxy Star

Hello Guyz Long Time No mods Okay whats this guide U can Use my guide For Changing ur SystemUI(notif panel) bg to ur custom bg Sounds intrstng haha I was searching here and there Found 1guide but..Sorry to say That one not work with mine but should work with others So After some experiments I Had Done It Myself Thanks God for giving me life LoL :3
Requirements
-apktool
-notepad++
-brain.jar XD
-Decompile Ur SystemUI
-open res/layout ldpi/tw_status_bar_dual.xml
-find this line
<FrameLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginBottom="@dimen/tw_close_handle_underlap">
-now We Are going to modify this line
-Before
<FrameLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginBottom="@dimen/tw_close_handle_underlap">
-after
<FrameLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/argha" android:layout_marginBottom="@dimen/tw_close_handle_underlap">
-What i have done here is
i just add this line
android:background="@drawable/argha"
-okay now save the line
-add a Png named argha
NOTE: U CAN USE ANY NAME FOR EXAMPLE SAMSUNG THEN ADD A PNG NAMED SAMSUNG
-it will me more good if ur noob in theming add the png in drawable folder or drawable ldpi
-recompile
-sign
-push
-reboot
Voila!!!!!! u have succesfully Changed the bg
@credits
@ShadeSK (Argha)
@Galaxy Star for inspiring me

Good tutorial
press thankks if you like my work

did u tried it??? if yes plz attach a Image So i can post on my thread

ShadeSK said:
did u tried it??? if yes plz attach a Image So i can post on my thread
Click to expand...
Click to collapse
I vl give a try tomorrow bro :good:

okay boss It will work 100%

Here's a ss from my trend?

Great

Good But
ShadeSK said:
Hello Guyz Long Time No mods Okay whats this guide U can Use my guide For Changing ur SystemUI(notif panel) bg to ur custom bg Sounds intrstng haha I was searching here and there Found 1guide but..Sorry to say That one not work with mine but should work with others So After some experiments I Had Done It Myself Thanks God for giving me life LoL :3
Requirements
-apktool
-notepad++
-brain.jar XD
-Decompile Ur SystemUI
-open res/layout ldpi/tw_status_bar_dual.xml
-find this line
<FrameLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginBottom="@dimen/tw_close_handle_underlap">
-now We Are going to modify this line
-Before
<FrameLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginBottom="@dimen/tw_close_handle_underlap">
-after
<FrameLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/argha" android:layout_marginBottom="@dimen/tw_close_handle_underlap">
-What i have done here is
i just add this line
android:background="@drawable/argha"
-okay now save the line
-add a Png named argha
NOTE: U CAN USE ANY NAME FOR EXAMPLE SAMSUNG THEN ADD A PNG NAMED SAMSUNG
-it will me more good if ur noob in theming add the png in drawable folder or drawable ldpi
-recompile
-sign
-push
-reboot
Voila!!!!!! u have succesfully Changed the bg
@credits
@ShadeSK (Argha)
@Galaxy Star for inspiring me
Click to expand...
Click to collapse
Gravity Box Jb LAtest Version HAd THis Option.......And Also For Transperency...any How it is great....may be helpful for rom makers

Thanks Btw Its for Themers & rom makers only hehe

Haha..worked like charm for me...

bittooshubham said:
Haha..worked like charm for me...
Click to expand...
Click to collapse
Thanks for feedback

Sent from my MotoG3 using Tapatalk

Related

EPIC BLUE THEME PULLDOWN TOGGLES for Eclipse 2.1

Is there a way to change the order of the pulldown toggles in this theme? This is what I've done so far:
1)I've decompiled the SystemUI.apk file
2)Modified the status_bar_expanded.xml file to reorder the toggles the way that I wanted them.
3)Deleted the proper files that were modified
4)Recompiled & signed it.
5)Replaced the modified SystemUI.apk file back into the Epic Blue zip file
6)Installed in recovery (wiping cache & dalvik cache)
The pulldown toggles remain in their original order, but other modifications that I made took effect. Any help would be GREATLY appreciated!! I have done this before even with Epic Blue for 2.0.X with great results.
dkool1 said:
Is there a way to change the order of the pulldown toggles in this theme? This is what I've done so far:
1)I've decompiled the SystemUI.apk file
2)Modified the status_bar_expanded.xml file to reorder the toggles the way that I wanted them.
3)Deleted the proper files that were modified
4)Recompiled & signed it.
5)Replaced the modified SystemUI.apk file back into the Epic Blue zip file
6)Installed in recovery (wiping cache & dalvik cache)
The pulldown toggles remain in their original order, but other modifications that I made took effect. Any help would be GREATLY appreciated!! I have done this before even with Epic Blue for 2.0.X with great results.
Click to expand...
Click to collapse
Hmm. Are you using apkmanager to do this? I've had problems with it when having to delete files that were modified so I always do the option to not save additional files.(if that makes sense). Anyway I'm curious so I'm going to try it out for myself and let you know how it goes.
EDIT: Same thing happened here. I change the order in the xml but it stayed the same. There must be more to it since the scrolling toggles were added. If I figure it out I'll let you know.
---------- Post added at 09:51 PM ---------- Previous post was at 09:02 PM ----------
OK, here's what I found. The toggles in eclipse 2.1 are positioned using relative layout. Which means that each of the FrameWork Layout sections are pointing to the id that it is to the right of. So if we move the FrameWork Layout sections it won't matter. What is important is what the "android:layout_toRightOf" value is set to. For example if you look at the gps button you see that it is alway to the right of the blue tooth button.
Code:
android:layout_toRightOf="@id/bt_bttn"
Code:
<FrameLayout android:id="@id/gps_bttn" android:layout_width="fill_parent" android:layout_height="65.0dip" android:layout_weight="1.0" android:layout_toRightOf="@id/bt_bttn">
<ImageView android:layout_gravity="center_horizontal" android:id="@id/quickpanel_gps_btn_icon" android:layout_width="72.099976dip" android:layout_height="wrap_content" android:layout_marginTop="3.0dip" android:src="@drawable/quickpanel_icon_gps_off" />
<com.android.systemui.statusbar.quickpanel.GpsSettingButton android:textSize="11.0dip" android:textStyle="bold" android:textColor="#ffdfdfdf" android:gravity="center_horizontal" android:id="@id/quickpanel_gps_btn_text" android:paddingTop="35.0dip" android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="@string/quickpanel_gps_text" android:shadowDx="1.0" android:shadowDy="1.0" />
<ImageView android:layout_gravity="bottom|center" android:id="@id/quickpanel_gps_btn_status_icon" android:paddingLeft="2.2999878dip" android:paddingRight="2.2999878dip" android:layout_width="fill_parent" android:layout_height="5.299988dip" android:layout_marginBottom="4.0dip" android:src="@drawable/quickpanel_icon_off" android:scaleType="fitXY" />
</FrameLayout>
So changing the value of the layout_toRightO in each of the FrameLayout sections relative to the others is what you need to do to change the order of the toggles. I haven't tried it out yet but that should be what you're looking for. If you get to try it before I do let me know if it works.
Oh, Here's a tutorial that explains relative layout that I found http://developer.android.com/resources/tutorials/views/hello-relativelayout.html
Edit again: This method works. I just moved the flashlight right after the sound button.
You da Man!! Major Props to you!!
THANK YOU THANK YOU THANK YOU!!
Thanks. Glad to help.
Sent from my DROID X2 using Tapatalk
Has anyone had trouble with the flashlight toggle on the status bar sticking? It seems to stay for a little while and then goes back to the original status bar ....
I haven't, but I don't use the flashlight toggle enough to make a fair assessment. It hasn't stuck for me.

[GUIDE]Moving Power Widget to Bottom Like MIUI[CM7]

Hello guys, on this thread i will share my guide to you all (themers, member etc)
So, here we go..​
A. Explanation :
1. You must know how to compile/decompile
2. You must know how to edit xml/smali/baksmali
3. You must know how to use apktool/apkmanager/toolAlite or something else
4. You must know how to use notepad++/Sublime
B. Explanation :
1. Pull SystemUI.apk from your ROM (i suggest you. systemui must be clean).
2. Decompile it and open status_bar_expanded.xml from /res/layout/here
3. Find this line :
Code:
<com.android.systemui.statusbar.powerwidget.PowerWidget android:id="@id/exp_power_stat" android:layout_width="fill_parent" android:layout_height="wrap_content" />
4. And change to this line :
Code:
<com.android.systemui.statusbar.powerwidget.PowerWidget android:id="@id/exp_power_stat" android:layout_width="0.0px" android:layout_height="0.0px" />
5. Save
C. Explanation :
1. Open status_bar_tracking.xml
2. Find this line :
Code:
<com.android.systemui.statusbar.CloseDragHandle android:orientation="vertical" android:id="@id/close" android:layout_width="fill_parent" android:layout_height="wrap_content">
3. Paste this line at the bottom :
Code:
<com.android.systemui.statusbar.powerwidget.PowerWidget android:id="@id/exp_power_stat" android:layout_width="fill_parent" android:layout_height="wrap_content" />
4. Save and compile it then push to /system/app
Note :
- You can paste <com.android.systemui.statusbar.powerwidget.PowerWidget line after or before this line <com.android.systemui.statusbar.CloseDragHandle
Click to expand...
Click to collapse
Happy Theming!!
petrukgrinder said:
Hello guys, on this thread i will share my guide to you all (themers, member etc)
So, here we go..​
Happy Theming!!
Click to expand...
Click to collapse
Nice Tutor....
thanks master...
... click thanks for u....:fingers-crossed:
Ariefuno Recca said:
Nice Tutor....
thanks master...
... click thanks for u....:fingers-crossed:
Click to expand...
Click to collapse
your welcome uno
Send from my fvckin fingers
petrukgrinder said:
your welcome uno
Send from my fvckin fingers
Click to expand...
Click to collapse
Wkwkwk..... I Have Hammer, Maybe u can used it to Hit u're finger...
(JUST KID MASTER) LOL:laugh:
master, i have question about ROM, I'M port ROM stock to Cusker, but still Stuck in logo kernel? why....
I tried your tut and everything seemd great (when I was compiling, etc.) and now In my status bar I have 2 power widgets xD one on the bottom and second on the top xD
What should I do ? xd
BlackLie said:
I tried your tut and everything seemd great (when I was compiling, etc.) and now In my status bar I have 2 power widgets xD one on the bottom and second on the top xD
What should I do ? xd
Click to expand...
Click to collapse
remove the power widget on top.
how to do that? you can try it :
- first u must find and sure the line is power widget on top of page layout
- on the line of power widget make a 0.0px on android:layout_width & android:layout_height
- recompile ur systemui and u done with it.
Its work but i got problem when combined with your floating statusbar guide.how to get power widget on bottom the png not overlap like this:
Sent from my GT-S5360

[TUT] How to fix big "back" button with small navigation bar

Hey guys! To developers or whoever this may concern:
As you know, the back button does not scale nice with the small DPI navbar mods. You have to patch the SystemUI.apk for that as well. Here's how:
You have to edit the SystemUI.apk as well to fix that.
0. Decompile the SystemUI.apk
1. Go to res/layout/navigation_bar.xml
2. Delete
Code:
android:scaleType="center"
from
Code:
<com.android.systemui.statusbar.policy.KeyButtonView android:id="@id/back" android:layout_width="@dimen/navigation_key_width" android:layout_height="fill_parent" android:src="@drawable/ic_sysbar_back" android:scaleType="center" android:layout_weight="0.0" android:contentDescription="@string/accessibility_back" systemui:keyCode="4" systemui:glowBackground="@drawable/ic_sysbar_highlight" />
and
Code:
<com.android.systemui.statusbar.policy.KeyButtonView android:id="@id/back" android:layout_width="fill_parent" android:layout_height="80.0dip" android:src="@drawable/ic_sysbar_back_land" android:scaleType="center" android:layout_weight="0.0" android:contentDescription="@string/accessibility_back" systemui:keyCode="4" systemui:glowBackground="@drawable/ic_sysbar_highlight_land" />
3. Recompile and push to system/app. Reboot. Done!
Thank me if this helped!
Cool work mate. Finally you found it... Great.... I have spend my whole 8 Thanks at today in Xperia S forum.. Sorry :laugh::laugh::laugh::laugh:
This should be in themes and apps forum
Sent from my C5302 using XDA Premium 4 mobile app
Thanks a lot for this! That huge back button was driving me insane.
Its very good
I needed a lot
Thanks
I can not test..
navbar lost, wp black screen,
how to let as expected in 4.4.4 rom kitkat
vandiaz_sairavinz said:
I can not test..
navbar lost, wp black screen,
how to let as expected in 4.4.4 rom kitkat
Click to expand...
Click to collapse
U need a deodexed rom
Rajeev said:
U need a deodexed rom
Click to expand...
Click to collapse
What xperianze 4.4.4 deodex rom yet?
vandiaz_sairavinz said:
What xperianze 4.4.4 deodex rom yet?
Click to expand...
Click to collapse
Then u must done something wrong..

[MOD][GUIDE][HOW TO]Add Home and Lock Button on Status bar - S5 Toggle Settings

:good: Hit THANKS button if you like this :good:
=====:Credits:=====
Inspired from a post by @galaxy1210, i got the line code from there..
i dont know anything, i did this just by reading in this forum.. so, many thanks to XDA forum and all members..
so here you go..​
Requirements:
> Any tools to decompile and recompile apk (e.g ApkTool/AndroidMultitool)
> Notepad++
> Apks from your system; SystemUI.apk and framework-res.apk
GUIDE:
STEP 1:
Open your ApkTool/Multitool.. Install framework-res.apk then Decompile your SystemUi.apk
STEP 2:
Go to your Decompiled_apk folder and navigate to res/layout/ and open status_bar.xml with notepad++
This steps will add Home Button on the left side status bar...;
STEP 3:
Find this line;
Code:
<LinearLayout android:orientation="horizontal" android:id="@id/notification_icon_area" android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_weight="1.0" android:alpha="@dimen/notification_icon_area_alpha">
make an enter space before of line <LinearLayout android
at that blank space, paste the code below;
Code:
<com.android.systemui.statusbar.policy.KeyButtonView android:gravity="right" android:id="@id/home" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="0.0dip" android:src="@drawable/ic_sysbar_recent" android:singleLine="true" android:layout_alignParentRight="true" android:contentDescription="@string/accessibility_back" systemui:keyCode="3" systemui:glowBackground="@drawable/ic_sysbar_highlight" />
And this steps will add Lock Button on the right side status bar...;
STEP 4:
Find this line;
Code:
<com.android.systemui.statusbar.policy.Clock android:textSize="@dimen/status_bar_clock_text_size" android:textColor="#ffffffff" android:ellipsize="none" android:gravity="left|center" android:id="@id/clock" android:paddingLeft="3.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" android:includeFontPadding="false" />
make a space (enter) after of line android:includeFontPadding="false" />..
at that blank space, paste the code below;
Code:
<com.android.systemui.statusbar.policy.KeyButtonView android:id="@id/back" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="0.0dip" android:src="@drawable/ic_sysbar_lock" android:singleLine="true" android:layout_toRightOf="@id/recent_apps" android:layout_alignParentLeft="true" android:contentDescription="@string/accessibility_back" systemui:keyCode="26" systemui:glowBackground="@drawable/ic_sysbar_highlight" />
STEP 5:
And then save the modded status_bar.xml
STEP 6:
make your pict (*.png) for both buttons, name it "ic_sysbar_lock.png" and "ic_sysbar_recent.png" then paste it to folder drawable-xhdpi (res/layout/drawable-xhdpi)
or you can use pictures from the link below..
Follow this steps, if, and only if you want to change with S5 Toggles Setting
STEP 7:
download drawable-xhdpi.rar from the link below, extract it, then copy all pictures (81 pngs), to drawable-xhdpi folder (res/layout/drawable-xhdpi)
STEP 8:
if you want to remove the line below toggles, do this..
navigate to res/values-sw360dp-xhdpi/ and open dimens.xml with notepad++
change the value of quick_setting_button_status_height and quick_setting_button_status_padding into 0.0dip
then save it..
do that again, the same thing with dimens.xml at res/values-sw360dp-hdpi/
change the value of quick_setting_button_status_height and quick_setting_button_status_padding into 0.0dip
then save it..
LAST STEP:
Recompile your SystemUi
Dont forget to copy META-INF and AndroidManifest.xml from your old apk to your new apk (compiled apk)
LINK: https://drive.google.com/folderview?id=0B3YK8r-4xeLXV2p1ZDFWQTMwN2M&usp=sharing
Screenshot as attached, mine looks great with 240dpi mod.. :highfive:
FAQ:
> both button will act like physical button, home as home, and lock as power button
> so if you long press the button, the home button will shows recent apps, and the lock button will shows Device options
> if the lock button doesn't work, press the home button first..
> if you use wanam exposed, you can center the clock, and change color to get S5 blue color theme;
- go to Notification panel > Clock position=center
- go to Notification panel > Remove gaps between titles
- go to Theme:
Header background color > change color to : FF20738D
Text label color > change color to : FFFFFFFF
Tile background color > change color to : FF20738D
- reboot and done
THANKS MATE
i hope this guide works for you..​
reserved
PhoenixRom V18.5 SystemUI.apk
this is only for PhoenixRom user, dont flash it for the other Rom...
as i promised, here you go the modded SystemUI with HomeLock Button on Status bar for PhoenixRom V18.5.. :good:
Screenshot of HomeLock_StatusBar_PhoenixRomV18.5.zip
View attachment 2755919
View attachment 2755920
IMPORTANT;
- please make a backup first, or just copy your current SystemUI.apk (located in system/priv-app) and paste it somewhere in your device before flash this mod.. just in case if you want to revert back..
- then just flash it via recovery..
if you want the different mod of HomeLock Button, you can check this link..
GreenOrange_HomeLock_StatusBar_PhoenixRomV18.5.zip
Hidden_HomeLock_StatusBar_PhoenixRomV18.5.zip
for detail about this mod, please read FAQ above.. ENJOY..
and dont forget to hit THANKS button..
older version;
for PhoenixRom v17;
choose first, what kind of mod you want, codename indicates the mod inside..:
HomeLock = include home and lock button on status bar
KK = kitkat theme; white icon for signal, data signal, and battery (maybe battery doesn't work because of ogg battery)
S5Toggles = S5 toggles setting only
then download and flash it via recovery.. you can always backup first, just in case..
DOWNLOAD for PhoenixRom v17;
View attachment StatusBar_S5Toggles.zip
View attachment StatusBar_KK_S5Toggles.zip
View attachment StatusBar_HomeLock.zip
View attachment StatusBar_HomeLock_S5Toggles.zip
View attachment StatusBar_HomeLock_KK_S5Toggles.zip
View attachment PhoenixV17_Stock_SystemUI.zip
Click to expand...
Click to collapse
HurricaneRom v11 SystemUI.apk
and this is only for HurricaneRom v11 user, dont flash it for the other Rom...
p.s.
this mod use framework-res.apk from HurricaneRom v11 original note2, not from HurricaneRom v11 with note3 app package v5 installed..
if you test it and its not work please report and send me your SystemUI.apk and framework-res.apk so i can mod it for you..
choose first, what kind of mod you want, codename indicates the mod inside..:
HomeLock = include home and lock button on status bar
KK = kitkat theme; white icon for signal, data signal, and battery
S5Toggles = S5 toggles setting only
IMPORTANT; if you already using other theme/mod, please make a nandroid backup, then wipe cache - dalvik cache before flash this mod.. just in case..
read FAQ above.. ENJOY..
and dont forget to hit THANKS button.. :good:
4.4.2 Kitkat TW Modded SystemUI.apk
for detail about this mod, please read FAQ above..
IMPORTANT;
- please make a backup first, or just copy your current SystemUI.apk (located in system/priv-app) and paste it somewhere in your device before flash this mod.. just in case if you want to revert back.
- then just flash it via recovery..
Screenshot
4.4.2 Kitkat TW Modded SystemUI - For Common 4.4.2 Kitkat TW ROM
DN3RC2_Modded_SystemUI - Special for DN3 RC2 ROM
ENJOY..
and dont forget to hit THANKS button.. :good:
wifi not working
hotdroid said:
for other request
Click to expand...
Click to collapse
ops ... wifi is not working now
1st I installed your patch with complete toggles and everything
Then I installed small zip file you gave me
Then I enabled WANAM to try some tweaks
Now I checked wifi and its not working ... so I disabled framework
and I installed your patch with only buttons and without toggles
Still same problem ... wifi not working
---------------------------------------------
reinstalled rom and reinstalled the mod with buttons only
now all is good
thanks
MehruNisa said:
ops ... wifi is not working now
1st I installed your patch with complete toggles and everything
Then I installed small zip file you gave me
Then I enabled WANAM to try some tweaks
Now I checked wifi and its not working ... so I disabled framework
and I installed your patch with only buttons and without toggles
Still same problem ... wifi not working
---------------------------------------------
reinstalled rom and reinstalled the mod with buttons only
now all is good
thanks
Click to expand...
Click to collapse
oops.. sorry mate..
maybe that small zip causing your problem, i'll remove that file so others wont get the same problem..
thanks for your report, glad you solved it..
Can I flashed on s3 v4.3
thereassaad said:
Can I flashed on s3 v4.3
Click to expand...
Click to collapse
NO, you can not.. its ROM system apk related..
even for the the same device but with different ROM will cause problems, moreover if you flash it for other device..
that's why i made the guide, so another maybe can make it for other devices..
hotdroid said:
and this is only for HurricaneRom v11 user, dont flash it for the other Rom...
p.s.
this mod use framework-res.apk from HurricaneRom v11 original note2, not from HurricaneRom v11 with note3 app package v5 installed..
if you test it and its not work please report and send me your SystemUI.apk and framework-res.apk so i can mod it for you..
choose first, what kind of mod you want, codename indicates the mod inside..:
HomeLock = include home and lock button on status bar
KK = kitkat theme; white icon for signal, data signal, and battery
S5Toggles = S5 toggles setting only
IMPORTANT; if you already using other theme/mod, please make a nandroid backup, then wipe cache - dalvik cache before flash this.. just in case..
read FAQ above.. ENJOY..
and dont forget to hit THANKS button.. :good:
Click to expand...
Click to collapse
hi
i installed in hurricane rom v11
but i found kk normal icons in status bar home lock kk theme s5toggles zip
pls make white icons
thank U in advance
JGKUMAR1976 said:
hi
i installed in hurricane rom v11
but i found kk normal icons in status bar home lock kk theme s5toggles zip
pls make white icons
thank U in advance
Click to expand...
Click to collapse
oops, sorry i miss that..
thanks for reporting, i'll recompile it again.. stay tune..
hotdroid said:
oops, sorry i miss that..
thanks for reporting, i'll recompile it again.. stay tune..
Click to expand...
Click to collapse
Sorry same again
Sent from my GT-N7100 using Tapatalk
JGKUMAR1976 said:
Sorry same again
Sent from my GT-N7100 using Tapatalk
Click to expand...
Click to collapse
hi mate..
please re-download and try it again, i hope i dont miss anything again..
and kindly if you dont mind to try every one of mod, just let me know if there something's wrong..
thanks
Hello hotdroid...is there any way to remove all the toggles and the space for it from the notification side of the status bar? I mean like aosp roms...so the notification drawer dont have any toggles at all....and we can use the toggle drawer only.
I dont know if you will understand me...sorry for my english
Enviado desde mi GT-N7100 mediante Tapatalk
hotdroid said:
and this is only for HurricaneRom v11 user, dont flash it for the other Rom...
. :good:
Click to expand...
Click to collapse
Mine on Hurricane V11 without Note 3 Mod.
I want to flash Home and lock.
I think I must flash:
File Type: zip StatusBar_HomeLock.zip - [Click for QR Code] (2.81 MB, 4 views)
But I still confused, what for this link?
File Type: zip HurricaneV11_Stock_SystemUI.zip - [Click for QR Code] (2.81 MB, 10 views)
Thanks
---
=Edit=
Wa,,,,, may be that link for back to original Hurricane, isn't it?
Cocolopes said:
Hello hotdroid...is there any way to remove all the toggles and the space for it from the notification side of the status bar? I mean like aosp roms...so the notification drawer dont have any toggles at all....and we can use the toggle drawer only.
I dont know if you will understand me...sorry for my english
Enviado desde mi GT-N7100 mediante Tapatalk
Click to expand...
Click to collapse
yeah mate.. maybe i understand what you mean.
but i'm not sure which xml should be edited and code line should be removed.
if you have a clue, let me know..
injulia said:
Mine on Hurricane V11 without Note 3 Mod.
I want to flash Home and lock.
I think I must flash:
File Type: zip StatusBar_HomeLock.zip - [Click for QR Code] (2.81 MB, 4 views)
But I still confused, what for this link?
File Type: zip HurricaneV11_Stock_SystemUI.zip - [Click for QR Code] (2.81 MB, 10 views)
Thanks
---
=Edit=
Wa,,,,, may be that link for back to original Hurricane, isn't it?
Click to expand...
Click to collapse
that's right mate. that's the stock aka the original one.
in case if you want to revert back without mod at all..
hotdroid said:
that's right mate. that's the stock aka the original one.
in case if you want to revert back without mod at all..
Click to expand...
Click to collapse
Just installed.
Thank you bro Hotdroid.
Sent from my GT-N7100 using Tapatalk
What about DN3 ?
I mean, can I flash it on DN3 4.4.2 ?
Sent from Gallifrey using TARDIS
Nonta72 said:
What about DN3 ?
I mean, can I flash it on DN3 4.4.2 ?
Sent from Gallifrey using TARDIS
Click to expand...
Click to collapse
NO, i dont think so. because 4.3 and 4.4.2 using the different framework-res.apk
even for the same rom 4.3 if using the different framework-res.apk will causing problem..
hotdroid said:
NO, i dont think so. because 4.3 and 4.4.2 using the different framework-res.apk
even for the same rom 4.3 if using the different framework-res.apk will causing problem..
Click to expand...
Click to collapse
Oh ! So sad
Thanks anyway for your Work
Hope you will manage to do the port.
Sent from Gallifrey using TARDIS

[GUIDE] "HOW-TO" ADD APP SHORTCUTS TO *STATUSBAR* [EaSiEsT EvEr]

GUYS PROUDLY PRESENTING YOU
SAM16'S QUICKPANEL SHORTCUTS
WHAT DOES IT DO??
Add DIffernet APP ShortCuts TO YouR STATUSBAR.!!! (others apps also if u want too )
Which ShOrTcUtS Are InCluDeD??
12 Diffrent Shorcuts Are include.
1. Settings
2. Browser
3. Camera
4. Music
5. Gmail
6. Playstore
7. Memo
8. Search
9. Mms
10. Youtube
11. TaskManager
12. Alarm
HOW TO DO IT..??
I will show u how to add *ONLY 1 SHORTCUT that is SETTINGS*. Procedure for rest is the same. Just change the last code in xml from Settings to Browser or Camera or etc. And change the background name from Settings to Brower or Camera or etc. And add the specific image file in ur res/drawable-ldpi folder.
1. Download Both The Zips...
a) First Zip which is *drawables.zip* contains all the images for the 12 shortcuts.U dont need to add them all to your res/drawable-ldpi folder. Just add the 1 whose shortcut u want and whose code u have added in xml u can delete rest of the pngs. Eg. If u want settings shortcut then only keep the settings.png dont add others to ur drawable-ldpi folder.
b) This Zip which is *smalli.zip* contains all the smalli files needed for the 12 shortcuts. The path is yash/sam/Shortcuts/..... U dont need to keep all the files in Shortcuts folder just keep Settings.smalli and Settings$1.smalli if u want only settings shortcut and delete the rest. But these files are just in kb so i prefer if u dont delete them.
2. Decompile ur Systemui Using Apkmanager or Apktool. Search Google or Xda for #HOW TO DECOMPILE APKS# i wont be explaining that.
3. Add the image from the drawables.zip whose shortcut u want in res/drawable-ldpi folder. I Have taken Settings shortcut as example so just add settings.png in res/drawable-ldpi.
4. Add the smalli files from smalli.zip in ur smalli folder. The folder in the smalli,zip is yash. So after adding it there will be a yash named folder in ur smalli folder including all previous folders of ur systemui.
5. Go to res/layout and open statusbar_expanded.xml and add this line
Code:
<yash.sam.ShortCuts.Settings android:background="@drawable/settings" android:layout_width="wrap_content" android:layout_height="40.0dip" />
anywhere in A LinearLayout or A RelativeLayout where u want ur Settings Shortcut.
for newbies add after
Code:
<LinearLayout android:orientation="horizontal" android:background="@drawable/quickpanel_plmn_background" android:layout_width="fill_parent" android:layout_height="wrap_content" android:baselineAligned="false">
<com.android.systemui.statusbar.CarrierLabel android:textSize="17.659973dip" android:textColor="#ffffffff" android:layout_gravity="center_vertical" android:orientation="vertical" android:paddingBottom="1.0dip" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_marginLeft="5.0dip" android:layout_marginTop="1.0dip" android:layout_weight="1.0" />
this code or search carrierlabel and add my line after it.
so after adding it will look like
Code:
<LinearLayout android:orientation="horizontal" android:background="@drawable/quickpanel_plmn_background" android:layout_width="fill_parent" android:layout_height="wrap_content" android:baselineAligned="false">
<com.android.systemui.statusbar.CarrierLabel android:textSize="17.659973dip" android:textColor="#ffffffff" android:layout_gravity="center_vertical" android:orientation="vertical" android:paddingBottom="1.0dip" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_marginLeft="5.0dip" android:layout_marginTop="1.0dip" android:layout_weight="1.0" />
<yash.sam.ShortCuts.Settings android:background="@drawable/settings" android:layout_width="wrap_content" android:layout_height="40.0dip" />
<Button android:textSize="13.0sp" android:layout_gravity="center_vertical" android:id="@id/clear_all_button" android:layout_width="85.0dip" android:layout_height="wrap_content" android:layout_marginTop="5.0dip" android:layout_marginRight="6.0dip" android:layout_marginBottom="3.0dip" android:text="@string/status_bar_clear_all_button" style="?android:attr/buttonStyleSmall" />
</LinearLayout>
Now u are DONE..
JUST RECOMPILE AND ENJOY......!!!!!!!
THIS APP SHORTCUTS ARE MADE BY ME FROM JAVA AND NOT KANGED FROM ANY1...!!
CREDITS
Spacecaker (USED 2 of ur lines buddy )
TJATOER
SCREENSHOTS
In NeXt PoSt ​
Reserved for Ss..
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Sent from my GT-S6102 using Tapatalk 2
Great Tuts want make for CM if can
DvikzzDroid said:
Great Tuts want make for CM if can
Click to expand...
Click to collapse
Works in any Rom any fone any app..
Sent from my GT-S6102 using Tapatalk 2
samsoul16 said:
GUYS PROUDLY PRESENTING YOU
SAM16'S QUICKPANEL SHORTCUTS
WHAT DOES IT DO??
Add DIffernet APP ShortCuts TO YouR STATUSBAR.!!! (others apps also if u want too )
Which ShOrTcUtS Are InCluDeD??
12 Diffrent Shorcuts Are include.
1. Settings
2. Browser
3. Camera
4. Music
5. Gmail
6. Playstore
7. Memo
8. Search
9. Mms
10. Youtube
11. TaskManager
12. Alarm
HOW TO DO IT..??
I will show u how to add *ONLY 1 SHORTCUT that is SETTINGS*. Procedure for rest is the same. Just change the last code in xml from Settings to Browseer or Camera or etc.
1. Download Both The Zips...
a) First Zip which is *drawables.zip* contains all the images for the 12 shortcuts.U dont need to add them all to your res/drawable-ldpi folder. Just add the 1 whose shortcut u want and whose code u have added in xml u can delete rest of the pngs. Eg. If u want settings shortcut then only keep the settings.png dont add others to ur drawable-ldpi folder.
b) This Zip which is *smalli.zip* contains all the smalli files needed for the 12 shortcuts. The path is yash/sam/Shortcuts/..... U dont need to keep all the files in Shortcuts folder just keep Settings.smalli and Settings$1.smalli if u want only settings shortcut and delete the rest. But these files are just in kb so i prefer if u dont delete them.
2. Decompile ur Systemui Using Apkmanager or Apktool. Search Google or Xda for #HOW TO DECOMPILE APKS# i wont be explaining that.
3. Add the image from the drawables.zip whose shortcut u want in res/drawable-ldpi folder. I Have taken Settings shortcut as example so just add settings.png in res/drawable-ldpi.
4. Add the smalli files from smalli.zip in ur smalli folder. The folder in the smalli,zip is yash. So after adding it there will be a yash named folder in ur smalli folder including all previous folders of ur systemui.
5. Go to res/layout and open statusbar_expanded.xml and add this line
<yash.sam.ShortCuts.Settings android:background="@drawable/settings" android:layout_width="wrap_content" android:layout_height="40.0dip" />
anywhere in A LinearLayout or A RelativeLayout where u want ur Settings Shortcut.
for newbies add after
<LinearLayout androidrientation="horizontal" android:background="@drawable/quickpanel_plmn_background" android:layout_width="fill_parent" android:layout_height="wrap_content" android:baselineAligned="false">
<com.android.systemui.statusbar.CarrierLabel android:textSize="17.659973dip" android:textColor="#ffffffff" android:layout_gravity="center_vertical" androidrientation="vertical" androidaddingBottom="1.0dip" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_marginLeft="5.0dip" android:layout_marginTop="1.0dip" android:layout_weight="1.0" />
this code or search carrierlabel and add my line after it.
so after adding it will look like
Code:
<LinearLayout android:orientation="horizontal" android:background="@drawable/quickpanel_plmn_background" android:layout_width="fill_parent" android:layout_height="wrap_content" android:baselineAligned="false">
<com.android.systemui.statusbar.CarrierLabel android:textSize="17.659973dip" android:textColor="#ffffffff" android:layout_gravity="center_vertical" android:orientation="vertical" android:paddingBottom="1.0dip" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_marginLeft="5.0dip" android:layout_marginTop="1.0dip" android:layout_weight="1.0" />
<yash.sam.ShortCuts.Settings android:background="@drawable/settings" android:layout_width="wrap_content" android:layout_height="40.0dip" />
<Button android:textSize="13.0sp" android:layout_gravity="center_vertical" android:id="@id/clear_all_button" android:layout_width="85.0dip" android:layout_height="wrap_content" android:layout_marginTop="5.0dip" android:layout_marginRight="6.0dip" android:layout_marginBottom="3.0dip" android:text="@string/status_bar_clear_all_button" style="?android:attr/buttonStyleSmall" />
</LinearLayout>
Now u are DONE..
JUST RECOMPILE AND ENJOY......!!!!!!!
THIS APP SHORTCUTS ARE MADE BY ME FROM JAVA AND NOT KANGED FROM ANY1...!!
CREDITS
Spacecaker (USED 2 of ur lines buddy )
TJATOER
SCREENSHOTS
IN 2 min. COz of slow net connection ​
Click to expand...
Click to collapse
Mod Edit quote adjusted
Nice guide.. do u have ang guide regarding how to remove carier name along with png for y duos
whoa....Keep doing like this.
Sent from my GT-S5360 using Tapatalk 2
just a tip for your guide
change the layout to include code tags - this will make each section of coding easier to read
disable smileys in text - this will remove the smileys from your guide so people can easily copy and paste from your guide without having to keep adding the o
keep the colours dark - the yellow at top of the thread is too light and not readable without highlighting the text
marcussmith2626 said:
just a tip for your guide
change the layout to include code tags - this will make each section of coding easier to read
disable smileys in text - this will remove the smileys from your guide so people can easily copy and paste from your guide without having to keep adding the o
keep the colours dark - the yellow at top of the thread is too light and not readable without highlighting the text
Click to expand...
Click to collapse
Done. Color yellow was selected by mistake i wanted blue which is set now
PERFECT!!!!!
I put playstore and music in status bar header!!!!!!!!!!
The only changes is tha i changed the icons and i make it more color and smaller!!!
Thank you perfect guide!!!!!!!!!!
G.M.L.!
G.M.L said:
PERFECT!!!!!
I put playstore and music in status bar header!!!!!!!!!!
The only changes is tha i changed the icons and i make it more color and smaller!!!
Thank you perfect guide!!!!!!!!!!
G.M.L.!
Click to expand...
Click to collapse
I know it works perfect and is easy but now a days GB development is on a hold and no1 tried it much..!!
samsoul16 said:
I know it works perfect and is easy but now a days GB development is on a hold and no1 tried it much..!!
Click to expand...
Click to collapse
This its work in GB and in ICS!!!

Categories

Resources