[MOD][14 jan] - Instant screen off / Power menu in notification dropdown + How to - HTC One X

{
"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"
}
First of all, a big thanks to kurniawan77 for letting me port his brilliant mod. (Original mod)
Mod info
4 versions regarding placement; left, center right and bottom
All versions available with battery %
All versions available with AOSP style recent apps (thanks hassan89)
Based on 3.14.401.31 SystemUI.apk
Compatible with de-odexed and odexed ROMs (3.14.xxx.xx)
De-odexed and zipaligned
Instant screen off button integrated in notification header or bottom
Longpress button and APM / Power menu shows up
Bottom version note:
You can touch the bottom anywhere between the dots for instant screen off and power menu.
Pressing the dots, left and right, will give you stock bottom behaviour.
How to include this mod in your project
Assuming you know how to decompile and recompile SystemUI.apk, you'll need to do following;
Add ic_sysbar_lock.png to drawable-xhdpi
Open ids.xml and add green colored
Code:
<item type="id" name="recent_inspect_item">false</item>
[COLOR="Green"] <item type="id" name="screen_lock_button">false</item>[/COLOR]
</resources>
Now you'll need to open status_bar_expanded_header.xml (left, center and right) or status_bar_expanded.xml (bottom)
You may need to remove some margins depending your desired placement.
Add green colored (status_bar_expanded_header) left, center or right
Code:
xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui">
[COLOR="green"]<com.android.systemui.statusbar.policy.KeyButtonView android:id="@id/screen_lock_button" android:layout_width="50.0dip" android:layout_height="50.0dip" android:layout_marginTop="1.0dip" android:src="@drawable/ic_sysbar_lock" android:scaleType="center" systemui:keyCode="26" />[/COLOR]
<com.android.systemui.statusbar.policy.Clock android:textSize="36.0dip" android:textColor="@*android:color/white" android:id="@id/clock" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="10.0dip" android:singleLine="true" />
Code:
<com.android.systemui.statusbar.policy.Clock android:textSize="36.0dip" android:textColor="@*android:color/white" android:id="@id/clock" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="10.0dip" android:singleLine="true" />
[COLOR="green"]<com.android.systemui.statusbar.policy.KeyButtonView android:id="@id/screen_lock_button" android:layout_width="50.0dip" android:layout_height="50.0dip" android:layout_marginTop="1.0dip" android:src="@drawable/ic_sysbar_lock" android:scaleType="center" systemui:keyCode="26" />[/COLOR]
<com.android.systemui.statusbar.policy.DateView android:id="@id/date" android:layout_width="0.0px" android:layout_height="wrap_content" android:layout_marginLeft="10.0dip" android:layout_marginRight="10.0dip" android:maxLines="2" android:layout_weight="1.0" android:lineSpacingExtra="0.0dip" style="@com.htc:style/title_secondary_m" />
Code:
<com.android.systemui.statusbar.policy.DateView android:id="@id/date" android:layout_width="0.0px" android:layout_height="wrap_content" android:layout_marginLeft="10.0dip" android:layout_marginRight="10.0dip" android:maxLines="2" android:layout_weight="1.0" android:lineSpacingExtra="0.0dip" style="@com.htc:style/title_secondary_m" />
[COLOR="Green"]<com.android.systemui.statusbar.policy.KeyButtonView android:id="@id/screen_lock_button" android:layout_width="50.0dip" android:layout_height="50.0dip" android:layout_marginTop="1.0dip" android:src="@drawable/ic_sysbar_lock" android:scaleType="center" systemui:keyCode="26" />[/COLOR]
<com.android.systemui.statusbar.RotationToggle android:id="@id/rotation_lock_button" android:visibility="gone"
Remove red colored, then add green colored (status_bar_expanded) bottom
Code:
<com.android.systemui.statusbar.phone.CloseDragHandle android:layout_gravity="bottom" android:orientation="horizontal" android:id="@id/close" android:background="@drawable/status_bar_close_on" android:layout_width="fill_parent" android:layout_height="wrap_content">
[COLOR="Red"] <com.android.systemui.statusbar.phone.CarrierLabel android:gravity="center" android:id="@id/carrier" android:layout_width="fill_parent" android:layout_height="fill_parent">
<TextView android:textAppearance="@com.htc:style/title_secondary_m" android:ellipsize="end" android:gravity="center" android:id="@id/plmnLabel" android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="true" />
<TextView android:textAppearance="@com.htc:style/title_secondary_m" android:ellipsize="end" android:gravity="center" android:id="@id/spnLabel" android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="true" />
</com.android.systemui.statusbar.phone.CarrierLabel>[/COLOR]
</com.android.systemui.statusbar.phone.CloseDragHandle>
Code:
<com.android.systemui.statusbar.phone.CloseDragHandle android:layout_gravity="bottom" android:orientation="horizontal" android:id="@id/close" android:background="@drawable/status_bar_close_on" android:layout_width="fill_parent" android:layout_height="wrap_content">
[COLOR="Green"] <com.android.systemui.statusbar.policy.KeyButtonView android:gravity="center" android:id="@id/screen_lock_button" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginTop="5.0dip" android:layout_marginBottom="5.0dip" android:src="@drawable/ic_sysbar_lock" android:scaleType="center" systemui:keyCode="26" />[/COLOR]
</com.android.systemui.statusbar.phone.CloseDragHandle>
If you are running a ROM with signatures check enabled you'll need to do the following after you compiled your mod:
Drag META-INF folder and AndroidManifest.xml from stock SystemUI.apk to your modded SystemUI.apk.
How to make your own centered clock version
Because there are 24 versions to maintain now, i'll not add centered clock versions. I'll share with you how you can do it yourself easily.
This method doesn't cause SystemUI FC's when playing videos in landscape.
Assuming you know how to decompile and recompile SystemUI.apk, you'll need to open res\layout\status_bar.xml
Add green colored
Code:
xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui">
[B][COLOR="Red"][COLOR="red"][COLOR="red"][COLOR="Green"]<LinearLayout android:gravity="center" android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1.0">
<com.android.systemui.statusbar.policy.Clock android:textAppearance="@style/TextAppearance.StatusBar.Clock" android:textColor="@*android:color/white" android:gravity="center" android:id="@id/clock" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
</LinearLayout>[/COLOR][/COLOR][/COLOR][/COLOR][/B]
<ImageView android:id="@id/notification_lights_out" android:paddingLeft="6.0dip" android:paddingBottom="2.0dip" android:visibility="gone" android:layout_width="@dimen/status_bar_icon_size" android:layout_height="fill_parent" android:src="@drawable/ic_sysbar_lights_out_dot_small" android:scaleType="center" />
Remove red colored
Code:
</LinearLayout>
[COLOR="Red"] <com.android.systemui.statusbar.policy.Clock android:textAppearance="@style/TextAppearance.StatusBar.Clock" android:textColor="@*android:color/white" android:gravity="left|center" android:id="@id/clock" android:paddingLeft="6.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />[/COLOR]
</LinearLayout>
If you are running a ROM with signatures check enabled you'll need to do the following after you compiled your mod:
Drag META-INF folder and AndroidManifest.xml from stock SystemUI.apk to your modded SystemUI.apk.
Download links
Stock: Left, Center, Right, Bottom
Including battery %: Left, Center, Right, Bottom
Including battery % blue: Left, Center, Right, Bottom
Including AOSP style recent apps: Left, Center, Right, Bottom
Including AOSP style recent apps + battery %: Left, Center, Right, Bottom
Including AOSP style recent apps + battery % blue: Left, Center, Right, Bottom
​

Thanks for sharing.. like the right one and it works as it should

♀Mivahe said:
First of all, i want to thank kurniawan77 for letting me port his brilliant mod. (Original mod)
The original mod was made for 4.2.1 AOKP ROM and because i found his mod brilliant, i started my first project, porting it to a 4.1.1 Sense 4+ ROM.
It took me a few hours to figure out what to do and understanding the changes i had to make. Now i can proudly present you my first ported mod.
Mod info
* Softbutton for Screen Off integrated in header of notification dropdown
* Longpress button and Power Menu shows up
* Resized time, date and icon margins so it looks better
* Based on 3.14.401.31 SystemUI
* Compatible with de-odexed and odexed ROMs
* 3 versions available: left,center or right
Download links: Left, Center, Right​
Click to expand...
Click to collapse
Wow this is amazing Does this have battery percentage?

hassan89 said:
Wow this is amazing Does this have battery percentage?
Click to expand...
Click to collapse
Thanks, you just gave me my second project, adding battery %. Stay tuned

♀Mivahe said:
Thanks, you just gave me my second project, adding battery %. Stay tuned
Click to expand...
Click to collapse
This was a great idea. But I am on Renovate Rom which was themed, by flashing this am I going to loose some theming? Thanks for the mod
Sent from my HTC One X using Tapatalk 2

A tutorial for how to do this would be really helpful mate Using your logic we might be able to port all the notification bar toggles from AOSP roms . :good::good:

hassan89 said:
A tutorial for how to do this would be really helpful mate Using your logic we might be able to port all the notification bar toggles from AOSP roms . :good::good:
Click to expand...
Click to collapse
You should make it your own little project Compare my mod to stock SystemUI and you should find 3 files you need to change.. good luck:good:

nice
great job
another usefull mod

Thanks for your mod.
Im dreaming about one mod with this one, long press back button to kill app, APM and "Menu at Rosie" in one package That would be great.

SeBoLeX said:
Thanks for your mod.
Im dreaming about one mod with this one, long press to kill app, APM and "Menu at Rosie" in one package That would be great.
Click to expand...
Click to collapse
If you longpress the button.... You get apm already
sent from AOKP to OneX

Updated OP with optional battery % for all versions, hope you'll like it, enjoy!

Very Useful mod, thank you ^^

nice hacks

Installed on OrDroid and not working
Sent from my HTC One X using Tapatalk 2

Tabtoub said:
Very Useful mod, thank you ^^
Click to expand...
Click to collapse
Thanks
Dougi said:
nice hacks
Click to expand...
Click to collapse
Thanks, hope you enjoy my mod
levanoza said:
Installed on OrDroid and not working
Sent from my HTC One X using Tapatalk 2
Click to expand...
Click to collapse
My mod is based on a stock SystemUI, it does not include all the benefits and tweaks from OrDroid ROM, which is probably the reason why it's not working for you, though it should theoretical work as mod and ROM share same base. You could try it again and wipe cache and dalvik cache after flashing my mod. If it fails again plz ask your ROM dev to include this mod compatible with his ROM. I don't have the time to make my mod compatible with every ROM. Hope you understand.
To all devs: if you want to include this in your ROM plz pm me so i can share my changes and make it a bit easier for you to include my mod.

It works on Blade v4.
Sent from my HTC One X using xda app-developers app

Because I am not satisfied afterwards changing the margins i'm going to upload new mods with stock margins. Sorry for the inconvinience!
edit: New mods ready to download!
edit: Added back battery % versions

Hope this will be one day included in ViperX rom, I really love it

I really have to thank you for this, amazing mod! :thumbup:

Seems like a very useful mod! i've posted this before, but still don't know if it is possible:
Do you know how I can achieve the following: I'm running exchange policy (mandatory at my company). I've got an 'screen off and lock' button installed. When I use this screen off button, I always have to fill in my pin number, even when set on 30 minutes... I don't want to use the exchange disabler (which are found often in aroma installers), but would like to be able to use the phone as with gingerbread (just press the off button on your homescreen, The current screen off buttons/widgets all have a delay of some seconds... which is anoying... I can imagine that this is an app related thing, but if you know if there's a value which can be altered for the 'time out', that would be awesome!
Is there a way to achieve this, of your knowing?
many thanks in advance.
cheers

Related

[Mod](ANY DEODEXED GB TW ROM) Pimp my Status bar **now with transparency**

{
"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"
}
Custom status bar:
>>>Click Here<<<
Transparent status bar:
>>>Click Here<<<
Difficulty:1/5
Time:5mins
Bug Reporting:
If your going to post bugs send the following-
*The rom you are running
*What launcher you use
*What mod you have flashed
If you do not include this information I will not reply!!!
Info:
Tired of looking at that boring old black status/notification bar??
Here is a mod that should give you a custom status/notification bar on any Gingerbread Touchwiz Rom.
I have flashed this countless times in the past week or so and it works perfect for me on GingerMod v0.8
I dont know if this will work on other bases without looking at MIUI and cyanogenmod SystemUI.apks but feel free to try or post them for me to look at.
Also if you want transparency adding to your status bar (depending on the launcher used) post your UNTHEMED systemUI.apk.
What does the mod do??
It basically changes your status_bar.xml from displaying a colour-
ARGB-00(alpha)00(red)00(green)00(blue), thats black to us lot, to a png image instead-"statusbar_background.9.png" or "statusbar_background.png".
The image can be standard .png or .9.png(compiled!!), ideally .9.png if you use your device in landscape.
Preview:
All you have to do is follow these simple steps:
* Download 7zip and install on your P.C.(Its free just google search it).
* Find the status bar you like/want and download. You can find them on their own, inside themes or inside Roms.
* (A) Download the "Custom Status Bar.zip" from the link below, then open it up and navigate to "MORPH>system>app>SystemUI.apk>res>drawable-hdpi>". Basically open the zip then double click your way through.
* (B) Find the status bar that you just downloaded. If its within a rom/theme then open it up with 7zip and navigate to system>app>SystemUI.apk>res>drawable-hdpi>. In here you want "statusbar_background.9.png" or "statusbar_background.png".
* Now select "statusbar_background.9.png"or "statusbar_background.png" in the (B) window and drag and drop into the (A) window and click yes to confirm.
* Now close both windows and put "Custom Status Bar.zip" on your SDcard and install it from CWM.
* Reboot.
>>>CLICK ME TO DOWNLOAD "Custom Status Bar.zip"<<<
Please note the universal theme zip used will create a backup on your sdcard in "universal themes", simply flash the backup from CWM to restore your previous state prior to flashing.
I am not responsible for any actions you take!!.
I have included my status bars from my Phone Candy theme in the "Custom Status Bar.zip", they are attached also.
Please post any status bars and ill create a gallery for them.
Credits:
UNIVERSAL FLASHER TOOL v.3.2
by JRsoft & Intronauta
*Villain Team for the concept
*Stericson for "Metamorph" system
*Core Utilities for the tar binary
*Blades" for the 7z binary and libs
*All testers, especially to SuperCocoV6.5 and lexullde
*doctorcete for helping with the translations
How does this work??
The transparent status bar is only enabled by making changes to "StatusBarService.smali" inside "SystemUI.apk\smali\com\android\systemui\statusbar\"
Most SystemUI.apk's are different in build so unfortunately it's not a case of "one mod fits all"
Taking a transparent status bar png and adding it to the mod from post 1 WILL NOT give you transparency, it needs to be enabled, as does using a launcher which supports transparent status bars. A list can be found below detailing which launchers work.
If you do not see your rom listed below then post your SystemUI.apk and i will make the necessary changes to enable transparency.
Links for working transparency enabled SystemUI.apk
GingerMod v0.8
HyperDroid Androidmeda v6.0.8
Simple and Clean 2.4.3
Verts ICS
VillainRom v3.0.0
Links contain only the necessary files for the mod to work including full transparent status_bar.png. This means you should not lose any of the your theme.
Install:
*Download appropriate zip
*Install from CWM recovery
*Reboot.
KNOWN ISSUES:
If you are using JKays mod then the date will appear in the status/notification bar when pulled down.
I have disabled the date in SystemUI and it works fine on roms not using his tool, But JKays mod is displaying the date from framework-res (i think) which is also connected to the notification text disaplayed on the status bar. So until i figure out how to split the date and notifications you have a choice:
*No date and notification text
or
*Display date and notification text
If want to remove the date and notification text post your framework-res.apk and ill make appropriate changes.
Here is a zip containg 7 simple transparency enabled status bars:
>>>CLICK ME<<<
Preview of the contents aginst a transparency checker background:
Contains
1x 0%
2x 25% (white and black)
2x 50% (white and black)
2x 75% (white and black)
If you have any requests feel free to ask..
Here are a list of launchers that i have personally tried with the transparent status bar and how to enable it:
* 360 Launcher
* ADW. Launcher
Uncheck wall paper hack.
* Balancer Launcher
* Gingerbread Launcher
* Go Launcher
Enable high quality wall paper.
* ICS 4.0 Launcher
* Launcher 7
* Launcher Pro
* MX Launcher
* QQ Launcher Pro
* Regina Launcher
* SPB Shell 3D
* TW Launcher
* Zeam Launcher
Credits:
UNIVERSAL FLASHER TOOL v.3.2
by JRsoft & Intronauta
*Villain Team for the concept
*Stericson for "Metamorph" system
*Core Utilities for the tar binary
*Blades" for the 7z binary and libs
*All testers, especially to SuperCocoV6.5 and lexullde
*doctorcete for helping with the translations
More space
Thanks for this mate! Im gonna try it straight away
I luv the thread title, LOL.
it s the same thing
dully79 said:
Difficulty:1/5
Time:5mins
Info:
Here is a mod that should give you a custom status/notification bar on any Gingerbread Touchwiz Rom.
I have flashed this countless times in the past week or so and it works perfect for me on GingerMod v0.8
I dont know if this will work on other bases without looking at MIUI and cyanogenmod SystemUI.apks but feel free to try or post them for me to look at.
Also if you want transparency adding to your status bar (depending on the launcher used) post your UNTHEMED systemUI.apk.
What does the mod do??
It basically changes your status_bar.xml from displaying a colour-
ARGB-00(alpha)00(red)00(green)00(blue), thats black to us lot, to a png image instead-"statusbar_background.9.png" or "statusbar_background.png".
The image can be standard .png or .9.png(compiled!!) with dimensions of upto 480(W)x38(H)
All you have to do is follow these simple steps:
* Download 7zip and install on your P.C.(Its free just google search it).
* Find the status bar you like/want and download.
* (A) Download the "Custom Status Bar.zip" then open it up and navigate to "MORPH/system/app/SystemUI.apk/res/drawable-hdpi/"
* (B) Find the status bar you want to use that you just downloaded. If its within a rom/theme then open it up with 7zip and navigate to system/app/SystemUI.apk/res/drawable-hdpi/. In here you want "statusbar_background.9.png" or "statusbar_background.png".
* Now select "statusbar_background.9.png"or "statusbar_background.png" in the (B) window and drag and drop into the (A) window and click yes to confirm.
* Now close both windows and put "Custom Status Bar.zip" on your SDcard and install it from CWM.
* Reboot.
>>>CLICK ME TO DOWNLOAD "Custom Status Bar.zip"<<<
Please note the universal theme zip used will create a backup on your sdcard in "universal themes", simply flash the backup from CWM to restore your previous state prior to flashing.
I am not responsible for any actions you take!!.
I have included my status bars from my Phone Candy theme in the "Custom Status Bar.zip", they are attached also.
Credits:
UNIVERSAL FLASHER TOOL v.3.2
by JRsoft & Intronauta
*Villain Team for the concept
*Stericson for "Metamorph" system
*Core Utilities for the tar binary
*Blades" for the 7z binary and libs
*All testers, especially to SuperCocoV6.5 and lexullde
*doctorcete for helping with the translations
Finally please post if the mod works on your Rom and i will add it to the OP,
Thank you.
Click to expand...
Click to collapse
it s the same thing doing this:
decompile SystemUI.apk with apk manager;
edit res/layout/status_bar.xml replacing..
Code:
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.StatusBarView android:orientation="vertical" android:background=[COLOR="red"]"ff000000"[/COLOR][COLOR="Green"]"@drawable/example"[/COLOR] 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.DateView android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:gravity="left|center" android:id="@id/date" android:background=[COLOR="Red"]"ff000000"[/COLOR][COLOR="green"]"@drawable/example"[/COLOR] 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>
and example is an png image with size 480x38 you have to place in res/drawable-hdpi named example.png
so easy
Find the status bar you want and download may not be clear to some people...
As in....where to look in the rom/theme and how to extract it out ...
Just a thought mate
Sent from my GT-I9100 using XDA App
pSyCh¤_O_O said:
Thanks for this mate! Im gonna try it straight away
Click to expand...
Click to collapse
Your welcome.
sileshnair said:
I luv the thread title, LOL.
Click to expand...
Click to collapse
Thanks.
Mirko ddd said:
it s the same thing doing this:
decompile SystemUI.apk with apk manager;
edit res/layout/status_bar.xml replacing..
Code:
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.StatusBarView android:orientation="vertical" android:background=[COLOR="red"]"ff000000"[/COLOR][COLOR="Green"]"@drawable/example"[/COLOR] 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.DateView android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:gravity="left|center" android:id="@id/date" android:background=[COLOR="Red"]"ff000000"[/COLOR][COLOR="green"]"@drawable/example"[/COLOR] 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>
and example is an png image with size 480x38 you have to place in res/drawable-hdpi named example.png
so easy
Click to expand...
Click to collapse
Yes mate, I've just tried to take the donkey work out and simplify it.
rixsta said:
Find the status bar you want and download may not be clear to some people...
As in....where to look in the rom/theme and how to extract it out ...
Just a thought mate
Sent from my GT-I9100 using XDA App
Click to expand...
Click to collapse
I'm going to add some screens when I get more time.
dully79 said:
. . .
Also if you want transparency adding to your status bar (depending on the launcher used) post your UNTHEMED systemUI.apk.
. . .
Click to expand...
Click to collapse
Hi mate.. . .
Why does the systemUI.apk have to be an unthemed one? . . .
morg01 said:
Hi mate.. . .
Why does the systemUI.apk have to be an unthemed one? . . .
Click to expand...
Click to collapse
It doesn't, but there's less chance of stumbling across problems when decompiling and recompiling.
& i got error ...i choose to create my own .png file with transparant image..
kingofjail said:
& i got error ...i choose to create my own .png file with transparant image..
Click to expand...
Click to collapse
Your going to have to give more information.
Also have you modified the smali to enable transparent status bar??
This mod alone doesn't enable transparency, just the ability to use a custom status bar.
dully79 said:
Your going to have to give more information.
Also have you modified the smali to enable transparent status bar??
This mod alone doesn't enable transparency, just the ability to use a custom status bar.
Click to expand...
Click to collapse
trasparency in status bar is possible, but the result is awful due to text crossing of notification. This may need (it does) several work on it, on SystemUI.apk and maybe in other ones.
Sorry 4 my bad english, I hope you understand what I mean
Mirko ddd said:
trasparency in status bar is possible, but the result is awful due to text crossing of notification. This may need (it does) several work on it, on SystemUI.apk and maybe in other ones.
Sorry 4 my bad english, I hope you understand what I mean
Click to expand...
Click to collapse
Yes I'm aware of this, it has been discussed in another thread.
I haven't had time to try a fix as I've been busy with countless requests and PMS, but ill try and look tonight.
PROGRESS!!
Hello,
So i've just had a look and modified the "status_bar.xml" to try and fix the date/notification clash and this is the result:
As you can see i have made the date disappear resulting in no more clash!!
There is also no 2nd status bar image overlap from the pulldown as ive changed the code from:
android:layout_width="wrap_content"
To
android:layout_width="fill_parent"
All in all a job well done for a first attempt from an xml novice and thanks sileshnair for your support in the other thread.
I suppose you wanted the latest Hyper systemui
Goodnight
siberian tiger said:
I suppose you wanted the latest Hyper systemui
Goodnight
Click to expand...
Click to collapse
Many, many thanks mate. It's just for a request I got to add transparency. I didn't want to download the whole rom using 3g, my broadband is off.
Thanks again.
dully79 said:
Hello,
So i've just had a look and modified the "status_bar.xml" to try and fix the date/notification clash and this is the result:
As you can see i have made the date disappear resulting in no more clash!!
There is also no 2nd status bar image overlap from the pulldown as ive changed the code from:
android:layout_width="wrap_content"
To
android:layout_width="fill_parent"
All in all a job well done for a first attempt from an xml novice and thanks sileshnair for your support in the other thread.
Click to expand...
Click to collapse
easier than I thought gotta try it out sooner as possible!
Greeting, thanks for this . . . any chance you could have a bash at the following?
View attachment 874910
Transparency please?
morg01 said:
Greeting, thanks for this . . . any chance you could have a bash at the following?
View attachment 874910
Transparency please?
Click to expand...
Click to collapse
No probs mate, I've just gotten in from work so give me a hour as I've got a couple of requests to do and I'll have it up for you.
Also do you want it fully transparent, 25%, 50%, 75%, black or white??
And what Rom is it from?
It needs to be de-odexed.

[MOD]Permanent Date in Statusbar - Center Date for AOKP

This mod will let the date always displaying in statusbar, like the clock does..check the screenshot. I also removed date from notification header, since it's already in statusbar.
For the center date in AOKP go to the end of the post.
Always backup before you try anything!
{
"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"
}
You have to decompile(apk manager does it) SystemUI.apk.
Go to file SystemUI.apk\res\layout\status_bar.xml
find the line 15
Code:
<com.android.systemui.statusbar.policy.Clock android:textAppearance="@style/TextAppearance.StatusBar.Clock" android:gravity="left|center" android:id="@id/clock" android:paddingLeft="4.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
place on top of it the line
Code:
<com.android.systemui.statusbar.policy.DateView android:textAppearance="@style/TextAppearance.StatusBar.Date" android:gravity="left|center" android:id="@id/date" android:paddingLeft="4.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" android:layout_toLeftOf="@id/clock" />
so it will look like that
Code:
</LinearLayout>
[COLOR="Red"]<com.android.systemui.statusbar.policy.DateView android:textAppearance="@style/TextAppearance.StatusBar.Date" android:gravity="left|center" android:id="@id/date" android:paddingLeft="4.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" android:layout_toLeftOf="@id/clock" />
<com.android.systemui.statusbar.policy.Clock android:textAppearance="@style/TextAppearance.StatusBar.Clock" android:gravity="left|center" android:id="@id/clock" android:paddingLeft="4.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />[/COLOR]
</LinearLayout>
now here, I set the
Code:
android:paddingLeft="4.0dip"
with the same value in both clock and date, so they have the same space at the left.
With this setup, you will always see date and then clock at the right of the statusbar(I haven't test something else yet).
if you want to delete the date from the notification header, do the following
in the file SystemUI.apk\res\layout\status_bar_expanded.xml delete the following line
Code:
<com.android.systemui.statusbar.policy.DateView android:textAppearance="@style/TextAppearance.StatusBar.Date" android:gravity="left|center" android:id="@id/date" android:paddingLeft="16.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" android:layout_alignParentLeft="true" />
and in the line
Code:
<ImageView android:id="@id/settings_button" android:paddingLeft="8.0dip" android:paddingRight="8.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:src="@drawable/ic_notify_quicksettings" android:layout_toRightOf="@id/date" android:contentDescription="@string/accessibility_settings_button" />
replace the
Code:
android:layout_toRightOf="@id/date"
with the following(it maybe not crucial, but I did it)
Code:
android:layout_alignParentLeft="true"
it should look something like that
the text size is probably looking different between date and clock, so in the file SystemUI.apk\res\values\styles.xml is the text size of both.
clock
Code:
<style name="TextAppearance.StatusBar.Clock" parent="@android:style/TextAppearance.StatusBar.Icon">
<item name="android:textSize">16.0dip</item>
<item name="android:textStyle">normal</item>
<item name="android:textColor">@android:color/holo_blue_light</item>
</style>
and date
Code:
<style name="TextAppearance.StatusBar.Date" parent="@android:style/TextAppearance.StatusBar.Icon">
<item name="android:textSize">16.0sp</item>
<item name="android:textStyle">normal</item>
<item name="android:textColor">@android:color/holo_blue_light</item>
</style>
I changed both with
Code:
[COLOR="Red"]<item name="android:textSize">[B]14.0sp[/B]</item>[/COLOR]
Center Date in AOKP roms
although if you enable every statusbar icon(bt, vibrate,alarm,wifi etc) it will look messy cause the clock overlapse the icons.
since AOKP rom has an option to set the clock in the center, it's quite easy to have the date in that order too.
in file SystemUI.apk\res\layout\status_bar.xml copy&delete or cut the line
Code:
<com.android.systemui.statusbar.policy.DateView android:textAppearance="@style/TextAppearance.StatusBar.Date" android:gravity="left|center" android:id="@id/date" android:paddingLeft="4.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" android:layout_toLeftOf="@id/clock" />
and place it in top of (watch the centerclock, not just clock)
Code:
<com.android.systemui.statusbar.policy.[COLOR="Red"]CenterClock[/COLOR] android:textAppearance="@style/TextAppearance.StatusBar.Clock" android:gravity="center" android:id="@id/center_clock" android:paddingLeft="4.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
so it will look like that
Code:
<LinearLayout android:gravity="center" android:orientation="horizontal" android:id="@id/center_clock_layout" android:layout_width="fill_parent" android:layout_height="fill_parent">
<com.android.systemui.statusbar.policy.DateView android:textAppearance="@style/TextAppearance.StatusBar.Date" android:gravity="left|center" android:id="@id/date" android:paddingLeft="4.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" android:layout_toLeftOf="@id/center_clock" />
<com.android.systemui.statusbar.policy.CenterClock android:textAppearance="@style/TextAppearance.StatusBar.Clock" android:gravity="center" android:id="@id/center_clock" android:paddingLeft="4.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
</LinearLayout>
now in the end of the line you cut/copied change the "@id/clock" into "@id/center_clock", so it will look like that
Code:
android:layout_toLeftOf="@id/center_clock"
now you're good to go, it will look like that(it won't be in italic, I just changed it) and choose center clock in ROM control options in settings, otherwise you'll have center date and clock at the right which is also nice
I hope I didn't forget anything
Recompile and push it/flash it.
submit your comments and mods, left, center date or whatever
Wow
..that's def the coolest MOD I've seen in a while. I don't think I've seen anyone do this before. I'm not home, but as soon as I get back I'm def gonna try this. Good job man!!!!
Sent from my Galaxy Nexus using xda premium
This is brilliant! Many thanks
any chance of making this a flashable CWM ZIP?
Also, is it possible to show dBm (signal strength) in the status bar?
I have a flashable for AOKP MS3 including this mod(small thumbs) http://forum.xda-developers.com/showthread.php?t=1480309 cause this is how I use it and the softkeys of the screenshot
please backup before you try anything.
@winwiz, for the db it should need work which unfortunately I don't know how
Any chance you wouldn't mind post your wallpaper? I just taught that book to my students last week actually. Good timing Oh and thanks for the mod too, of course. Cheers!
Sent from my Galaxy Nexus using XDA App
clap-clap!very good mod man!the best of the lastest inserted in roms out there.applying that in this moment,and thank you very much!very appreciated!
tlspatt said:
Any chance you wouldn't mind post your wallpaper? I just taught that book to my students last week actually. Good timing Oh and thanks for the mod too, of course. Cheers!
Sent from my Galaxy Nexus using XDA App
Click to expand...
Click to collapse
sure
http://img21.imageshack.us/img21/705/wallpaper715037662.jpg
sert00 said:
clap-clap!very good mod man!the best of the lastest inserted in roms out there.applying that in this moment,and thank you very much!very appreciated!
Click to expand...
Click to collapse
did you try the flashable zip? does it work? cause I think I left something different in this zip . check the notification background if it is ok(semi transparent like the default)
nope i'm doing...the sig report m3 but this morning i flashed another rom.my phone now is total empty,it takes me less time to flash m3 and after that flash yours zip,instead of doing mine the mod because it takes me more times that the cwm zip.phone is total wiped,no prob at all
i'll report this in 5 minutes
EDIT if you mean the background above the notification widget is semi-trasparent like before apply the mod..for me it's ok.now i stick with m3 and add my mod to your package.
ps...you have done the mod with modded systemUI right?because softkeys changed...!
i'll remake all with my systemUI (to have all my mods+your mod in one package)
very thnks for mod.for me so usefull!
EDIT 2 ok,managed.done your modification (date)over my mod (circlemod by hoolms standard+mixed softkey (2 packs)of atticus192.
We NEED a developer to come in here and tell us how to center the date and clock. I'm all for doing it myself but I don't know what to code
Is there any way to make the date format like such: mo/day/year ex. 02/12/12?
sert00 said:
ps...you have done the mod with modded systemUI right?because softkeys changed...!
i'll remake all with my systemUI (to have all my mods+your mod in one package)
very thnks for mod.for me so useful!
Click to expand...
Click to collapse
glad you like it. yes I had the custom softkeys in the zip, sorry about that, I edited the post.
number3pencil said:
We NEED a developer to come in here and tell us how to center the date and clock. I'm all for doing it myself but I don't know what to code
Click to expand...
Click to collapse
one way could be by editing arrays.xml in framework and putting it in front of the other icons, I tried it but it didn't work, I got a bootloop.
jgrimberg1979 said:
Is there any way to make the date format like such: mo/day/year ex. 02/12/12?
Click to expand...
Click to collapse
I was searching for that too. We need to have SHORT date appearance cause now it's LONG, but the date format is mentioned in system locale and I haven't found another way. If you change the language of the phone, it will change that too(if locale changes it)
ok, I have center clock in AOKP rom, very easy, how-to at the end of the 1st post.
thank you for posting the edits. i am going to try to port this to the samsung captivate AOSP build tomorrow.
TRusselo said:
thank you for posting the edits. i am going to try to port this to the samsung captivate AOSP build tomorrow.
Click to expand...
Click to collapse
of course, or else I should make a zip for every rom for every update
cheers
Hmm... Wondering as my status_bar.xml looks like this (as attachement) i dont know wtf to do...
if you can guide me that would be awesome!!
PS: Its cm7 based rom for Htc Desire S but i thought it doesnt make much difference? or maybe im wrong...
Cool Mod, AOKP should integrate this in their rom manager, would be an awesome addition
Sick1 said:
Hmm... Wondering as my status_bar.xml looks like this (as attachement) i dont know wtf to do...
if you can guide me that would be awesome!!
PS: Its cm7 based rom for Htc Desire S but i thought it doesnt make much difference? or maybe im wrong...
Click to expand...
Click to collapse
sure, i'll take a look. I'm not an expert of course but I'll try. I see that it has many differences..hmm.
la7lou7a said:
Cool Mod, AOKP should integrate this in their rom manager, would be an awesome addition
Click to expand...
Click to collapse
I guess it would be nice
I've shown it to Roman and he liked it. With the same way, we have weather in statusbar
҉ Sent from my Galaxy Nexus ҉
Sick1 said:
Hmm... Wondering as my status_bar.xml looks like this (as attachement) i dont know wtf to do...
if you can guide me that would be awesome!!
PS: Its cm7 based rom for Htc Desire S but i thought it doesnt make much difference? or maybe im wrong...
Click to expand...
Click to collapse
You have placed the line <com.android.systemui.statusbar.policy.DateView...>
in the end of the status_bar.xml but you have to put it on top of the "clock" line.
The status bar items follow the order in which you have placed the lines.
I m writing from a ****ing iPad(I viewed the XML from this too), I can't describe it better right now..
Tell me the results.
I cut it on top of the clock, now its in the right place on right of the clock in my statusbar but only showing when opening notifications, and there is empty space for it always "reserved" next to clock...
nikosrs4 said:
You have placed the line <com.android.systemui.statusbar.policy.DateView...>
in the end of the status_bar.xml but you have to put it on top of the "clock" line.
The status bar items follow the order in which you have placed the lines.
I m writing from a ****ing iPad(I viewed the XML from this too), I can't describe it better right now..
Tell me the results.
Click to expand...
Click to collapse
Sick1 said:
I cut it on top of the clock, now its in the right place on right of the clock in my statusbar but only showing when opening notifications, and there is empty space for it always "reserved" next to clock...
Click to expand...
Click to collapse
can you post some screenshots? they are very different compared to stock xml.
edit: try the attachment but please please backup first!
I changed a lot the status_bar.xml, not the expanded.

[DEV][MOD]Minimal Status Bar! Version 1!

Minimal Status Bar​By MR.Volkf​
Introduction
I was get boring with stock look of touchwiz or AOSP style so i decided to make project for Stock 4.1.2 Firmware,
if you have any idea please share and if you have any icon please upload
for CM10.1 please look at this
Minimal Status bar!
ScreenShoot
On CM10.1 Alpha 9 By dhiru (on my Samsung Galaxy SL) ​
{
"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"
}
On StockRom 4.1.2​
​
What's Must Be Fixed?
Airplane mode Icon Done
SmartStay Icon
Clock (Something not right)
Sound Mode(All) 90%...
Wifi Icon And Signal Icon 30%.... Coming soon on Version 1.1
GPS Icon Done
stat sys signal in/out/inout/no_inout Icon Done
stat sys data fully connected h plus/h/e/g/3g/3gplus/1x Icon Done
stat sys data connected 3g plus/3g/h plus/h/e/g/1x Icon Done
When notif came status bar change to black
Note: On the way to fix it....
Changelog
Version 1 10/13/2013
Initial Release​
Version 1.1 Coming soon
Download
Version 1
DEV ONLY
Change Text in Status bar use this guide Here
DropBox
Push it to System/App​
Thank for
Allah
@BOND1987 for help me with tw_status_bar.xml
Agan Yoga
Indonesia Galaxy SIII Mini on Facebook
Miui for some icon
reserved
Nice theme, minimal<3 my favourite
Possible one for CM10.1?
looks interesting.
hope that fixes are coming soon...
AssToast said:
Nice theme, minimal<3 my favourite
Possible one for CM10.1?
Click to expand...
Click to collapse
thanksss it's possible,see my guide broo
JackoMJ said:
looks interesting.
hope that fixes are coming soon...
Click to expand...
Click to collapse
thank you bro,hope you can help me make some icon
Progress... 50%
Stuff can't be fixed for now
-Signal Icon & Wifi Icon (add some code to the line android:visibility="gone")
-Smart Stay
-All Sound Mode (ringer,silent...)
Thanks For @BOND1987
ScreenShoot
Someone can move the clock from right to center?
Code:
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.phone.PhoneStatusBarView android:orientation="vertical" android:id="@id/status_bar" android:background="@drawable/status_bar_background" android:focusable="true" android:fitsSystemWindows="true" android:descendantFocusability="afterDescendants"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui">
<ImageView android:id="@id/notification_lights_out" android:paddingLeft="6.0dip" android:paddingBottom="2.0dip" android:visibility="gone" android:layout_width="@dimen/status_bar_icon_size" android:layout_height="fill_parent" android:src="@drawable/ic_sysbar_lights_out_dot_small" android:scaleType="center" />
<LinearLayout android:orientation="horizontal" android:id="@id/icons" android:paddingLeft="0.0dip" android:paddingRight="2.0dip" android:layout_width="fill_parent" android:layout_height="fill_parent">
<LinearLayout android:orientation="horizontal" android:id="@id/left_icons" android:paddingLeft="4.0dip" android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_weight="1.0">
<TextView android:textSize="15.0dip" android:gravity="center_vertical" android:id="@id/carrierLabel" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
<ImageView android:id="@id/operatorLogoIcon" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="fill_parent" android:src="@drawable/tw_stat_notify_operator_logo" />
<ImageView android:id="@id/doNotDisturbIcon" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/tw_dnd" android:alpha="0.7" android:scaleX="0.85" android:scaleY="0.85" />
<com.android.systemui.statusbar.StatusBarIconView android:id="@id/moreIcon" android:visibility="gone" android:layout_width="@dimen/status_bar_icon_size" android:layout_height="fill_parent" android:src="@drawable/stat_notify_more" />
<TextView android:textSize="14.0sp" android:textColor="#ffa6a6a6" android:gravity="left|center" android:layout_width="wrap_content" android:layout_height="fill_parent" android:text="@string/hello" android:singleLine="true" />
<include android:id="@id/signal_cluster" android:visibility="gone" android:gravity="left|center" android:layout_width="wrap_content" android:layout_height="wrap_content" layout="@layout/tw_signal_cluster_view" />
<com.android.systemui.statusbar.phone.IconMerger android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/notificationIcons" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_alignParentLeft="true" />
</LinearLayout>
<LinearLayout android:gravity="center|center" android:orientation="horizontal" android:id="@id/clock" android:layout_width="wrap_content" android:layout_height="fill_parent">
<com.android.systemui.statusbar.policy.Clock android:textSize="@dimen/status_bar_clock_text_size" android:textColor="#ffa6a6a6" android:gravity="center" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
</LinearLayout>
<LinearLayout android:orientation="horizontal" android:id="@id/right_icons" android:paddingRight="4.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentRight="true">
<LinearLayout android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/statusIcons" android:layout_width="wrap_content" android:layout_height="fill_parent" />
<LinearLayout android:gravity="center" android:orientation="horizontal" android:id="@id/signal_battery_cluster" android:paddingLeft="2.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent">
<TextView android:textSize="14.0dip" android:textColor="#ffa6a6a6" android:layout_gravity="center" android:id="@id/battery_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/status_bar_network_name_separator" />
<ImageView android:gravity="center" android:id="@id/battery" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</LinearLayout>
</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="@dimen/status_bar_icon_size" android:layout_height="@dimen/status_bar_icon_size" android:layout_marginRight="4.0dip">
<com.android.systemui.statusbar.AnimatedImageView android:layout_width="@dimen/status_bar_icon_size" android:layout_height="@dimen/status_bar_icon_size" android:scaleType="centerInside" />
<com.android.systemui.statusbar.AnimatedImageView android:layout_width="@dimen/status_bar_icon_size" android:layout_height="@dimen/status_bar_icon_size" android:scaleType="centerInside" />
</ImageSwitcher>
<com.android.systemui.statusbar.phone.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="@style/TextAppearance.StatusBar.PhoneTicker" android:id="@id/ticker_text_view_old" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
<TextView android:textAppearance="@style/TextAppearance.StatusBar.PhoneTicker" android:id="@id/ticker_text_view_new" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
</com.android.systemui.statusbar.phone.TickerView>
</LinearLayout>
</LinearLayout>
</com.android.systemui.statusbar.phone.PhoneStatusBarView>
DONEE!!!
but.... first of all goto setting ,show pm/am and the hidden pm/am in setting
MR.Volkf said:
DONEE!!!
View attachment 2320524
but.... first of all goto setting ,show pm/am and the hidden pm/am in setting
Click to expand...
Click to collapse
How did you get that name in the top left?
I always wanted to do that!
Verstuurd van mijn GT-I9070 met Tapatalk
Oh sorry guys for the nam,link deleted!
Sent from my GT-I8190 using xda app-developers app
Jeroenvk94 said:
How did you get that name in the top left?
I always wanted to do that!
Verstuurd van mijn GT-I9070 met Tapatalk
Click to expand...
Click to collapse
with this guide sir
http://forum.xda-developers.com/showthread.php?t=2401367
Why is the link deleted ?!?! Awww man !
And, if you can move the signal icon to left while the wifi icon and battery to right, it would be nice, just like iOS 7's status bar.
Is there an option to change the name actually ? Or we have to edit the framework ourself ? If it can change in the settings, it would be great, but if we need to edit the framework ourself, I can't do it because I'm not very good at modifying system things.
limyuyang said:
Why is the link deleted ?!?! Awww man !
And, if you can move the signal icon to left while the wifi icon and battery to right, it would be nice, just like iOS 7's status bar.
Is there an option to change the name actually ? Or we have to edit the framework ourself ? If it can change in the settings, it would be great, but if we need to edit the framework ourself, I can't do it because I'm not very good at modifying system things.
Click to expand...
Click to collapse
Sorry sir,something isn't right with clock,so i must found fix for it,ok sir request accepted
limyuyang said:
Why is the link deleted ?!?! Awww man !
And, if you can move the signal icon to left while the wifi icon and battery to right, it would be nice, just like iOS 7's status bar.
Is there an option to change the name actually ? Or we have to edit the framework ourself ? If it can change in the settings, it would be great, but if we need to edit the framework ourself, I can't do it because I'm not very good at modifying system things.
Click to expand...
Click to collapse
sir can you give me that battery icon?
MR.Volkf said:
Sorry sir,something isn't right with clock,so i must found fix for it,ok sir request accepted
Click to expand...
Click to collapse
Oh I see....ya I hope you canove those icons.
MR.Volkf said:
sir can you give me that battery icon?
Click to expand...
Click to collapse
Well, the picture I searched from Google, so I can't give u the battery icon actually because its on iOS, not android.
And also, you can just keep on using the battery icon u make, its nice and simple. Very good.
For people who good in theming please help me
MR.Volkf said:
For people who good in theming please help me
Click to expand...
Click to collapse
Actually the battery in your status bar is very nice, I think no need to do another battery icon again. This is my personal idea only.
limyuyang said:
Actually the battery in your status bar is very nice, I think no need to do another battery icon again. This is my personal idea only.
Click to expand...
Click to collapse
oke sirr how about signal and battery are the same?
Thankssss Uploader !!
MR.Volkf said:
oke sirr how about signal and battery are the same?
Click to expand...
Click to collapse
Well, I think the signal icon and battery icon are nice, what I request is just the WiFi icon move to right and signal icon move to left
limyuyang said:
Well, I think the signal icon and battery icon are nice, what I request is just the WiFi icon move to right and signal icon move to left
Click to expand...
Click to collapse
sorry sir wifi icon and signal the same code in status_bar.xml

[MOD][GUIDE]Three Panel Swipe animation (No conflict to swipe to remove notifs)

ScreenShot:
{
"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"
}
Long Description: Three panel with Swipe Animation, as you can see on the image, you will say that it will have conflict to swipe to remove notifications but it will not. It is because you will swipe at your "header" (or any place you want to put the swipe detector) only, BUT the whole page of UI will switch and the header will stay. You cant swipe at the bottom part but only in the part of the header of UI so that's why it will not have any conflicts to swipe to remove notification. (My header is where the smart buddy is.)
Short Description: Two class, first class was the swipe detector, the second class will switch and will receive what kind of swipe happened.
What YOU need:
1. know how to decompile and recompile apks.
2. Some experience.
---------STEPS--------
1.) Decompile your SystemUI.apk
2.) Go to res/layout/status_bar_expanded.xml open it and cover your header with this code.
Code:
<com.lenox.multiswipe.headerswipe android:layout_width="fill_parent" android:layout_height="wrap_content">
<(your header)/>
</com.lenox.multiswipe.headerswipe>
Example of my header cover by the code (The place of carrier's label act as my header):
Code:
<com.lenox.multiswipe.headerswipe android:layout_width="fill_parent" android:layout_height="wrap_content">
<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" />
<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>
</com.lenox.multiswipe.headerswipe>
3.) Then on the same xml, cover the first page of your UI, my first page of UI was the notifications so ... just look at the code below (hard to explain sorry xD) :
Code:
<com.lenox.multiswipe.multiswipe android:id="@id/ms" android:layout_width="fill_parent" android:layout_height="fill_parent">
[B]<ScrollView[/B] 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="17.0sp" android:textStyle="normal" android:textColor="#ffffffff" android:id="@id/noNotificationsTitle" android:background="@drawable/quickpanel_title_background" android:paddingLeft="5.0dip" android:layout_width="fill_parent" android:layout_height="26.0dip" android:text="@string/status_bar_no_notifications_title" />
<TextView android:textSize="17.0sp" android:textStyle="normal" android:textColor="#ffffffff" android:id="@id/ongoingTitle" android:background="@drawable/quickpanel_title_background" android:paddingLeft="5.0dip" android:layout_width="fill_parent" android:layout_height="26.0dip" 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="17.0sp" android:textStyle="normal" android:textColor="#ffffffff" android:id="@id/latestTitle" android:background="@drawable/quickpanel_title_background" android:paddingLeft="5.0dip" android:layout_width="fill_parent" android:layout_height="26.0dip" 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>
[B]<LinearLayout[/B] android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">
<TextView android:textColor="#ff000000" android:textSize="20.0dip" android:gravity="center_vertical|center_horizontal" android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="secondlayout" />
</LinearLayout>
[B]<LinearLayout[/B] android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">
<TextView android:textColor="#ff000000" android:textSize="20.0dip" android:gravity="center_vertical|center_horizontal" android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="thirdlayout" />
</LinearLayout>
</com.lenox.multiswipe.multiswipe>
REMINDER: You must have atleast 3 view or layouts for it to work otherwise your status bar will be gone missing. So my first view was the ScrollView (firstpage), second view/layout was the linearlayout(second page) and third view/layout was another linearlayout(thirdpage). It's up to you what you want to put in that pages. You can have three Relativelayouts, linearlayouts, or scramble, etc..
4.) Close and save, then go to res/values/ids.xml and add this line before </resources> at the bottom.
Code:
<item type="id" name="ms">false</item>
</resources>
5.) Close and save, then recompile the SystemUI.apk.
6.) Get your recompiled SystemUI.apk, and decompile it again. Then go to smali/com and add the lenox folder (with smalis inside) Download it the attachment part below.
7.) Get the public id of the id you put in the ids.xml earlier. To get it, go to res/values/public.xml then find the public id:
Code:
<public type="id" name="ms" id="(Important code)" />
(Remember the Important code.)
8.) Go to smali/com/lenox/multiswipe/multiswipe.smali then find this line:
Code:
.line 64
const v3, 0x7f040001
And replace the 0x7f040001 with your Important code/public id you get at step 7.
9.) Save all, Close then recompile it.
10.) flash or push your recompile SystemUI.apk.
That's it. Report if I forgot something and the credit goes to you .
Have a party. LOL
CREDITS:
github.com
Google.com (especially StackOverFlow.com)
[email protected] (ViewFlipper Source Code)
[email protected] (exact animation) (a very nice guy )
[email protected]
forum.xda-developers.com
Lenox Devs :laugh:​
Handy guide...looks great
Nice one man!
Wow! Great! :good:
Nice guide buddy! :thumbup::thumbup::thumbup:
Just looking for this thanx man!!
Sent from my GT-S5360 using Tapatalk 2
and what does the last two layout for ? is it toogles ? or what ?
Suggestion :
i think you should remove the lidroid on the second and third panel to make it more cool.
Mranggapo said:
and what does the last two layout for ? is it toogles ? or what ?
Click to expand...
Click to collapse
It's up to you what you want to put inside them. Example, your toggles is on second layout, information about you is on third layout. Because there's a guide on two panel swipe, but it has conflict on swipe to remove notification so i create that won't conflict on swipe to remove and it has three panels.
Sorry for my english. xD
Luwiji said:
i think you should remove the lidroid on the second and third panel to make it more cool.
Click to expand...
Click to collapse
It was not lidroid, they are stock toggles, if you have lidroid, you can put them in second or third layout to keep layouts clean. I dont have time (and skills xD) on designing my UI. This was only a mod for three panel with swipe animation and it's up to you on how will you use it.
hi sir tenten .i just want to ask if there is a way to make the swipe animation faster? thanks for this awesome tut
markmellarpes said:
hi sir tenten .i just want to ask if there is a way to make the swipe animation faster? thanks for this awesome tut
Click to expand...
Click to collapse
Ill remake it and use the animation of spacecaker from b16h22, becuase i think it is exact . And also I will make it faster. thanks for suggesting sir
Great guide buddy, but i see no point in having 2-3 layout's .. :thumbup:
Mr.Gentleman said:
Great guide buddy, but i see no point in having 2-3 layout's .. :thumbup:
Click to expand...
Click to collapse
For me also xD, but I saw some roms/mods that have 2-3 layouts. Example, 2 panel swiping(conflict with swipe to remove) and 3 page UI. I just make it three and remove the conflict on swipe to remove. It's up to them what they want to put inside and how they will use it. haha.
And by the way, I like your signature. hahahaha.
Thread Updated
Thread Updated, exact and faster animation.
Thanks to Spacecaker and b16h22.
tentenponce said:
Thread Updated, exact and faster animation.
Click to expand...
Click to collapse
thats what ive been waiting for.ahaha good job sir .gonna try it now :thumbup:
Sent from my GT-S5360 using xda premium
Can i Get the Java source of the app OP
samsoul16 said:
Can i Get the Java source of the app OP
Click to expand...
Click to collapse
I want to push the source on github, but my internet connection is </3 too too slow. xD
tentenponce said:
I want to push the source on github, but my internet connection is </3 too too slow. xD
Click to expand...
Click to collapse
buddy thats gr8. but actually i am a in a little hurry can u pm me the source or just the java files if u dont mind. ty
Now this guide is just awesome!!!
why only for galaxy y sir? xD does it work with any other device?

[MOD][GUIDE][APR 17] Potato Clock Mods FINAL VERSION

WHAT IS THIS?
Just a Potato clock
FEATURES
(COLOR HINTS)
NEW FEATURE
REMOVED
ORIGINAL FEATURE
VERSION
FINAL VERSION
Time-changed animation
Potato Clock v2.2
Custom Clock format - Make your own clock format
Potato Clock v2.1
Word Clock - Just time in words
All caps Word Clock
Minor bug fixes
New settings style - This one is cool
Potato Clock v2
***** Clock - Potato Edition of Fuzzy Clock (Show exact minutes in words)
All caps *****
Ninja Time removed
All features from v1.1
PREVIOUS CHANGE LOGS
Potato Clock v1.3
Ninja Moves - Ninja Time(Will change the current time to "NOW")
Potato Clock v1.2
Font - Bold|Condensed|Light|Light Italic|Normal|Custom (ttf & otf supported)
Potato Clock v1.1
AM/PM style - Normal|Small|Gone|Custom
Date style - Normal|Small|Gone|Custom
Potato Clock v1 - Initial release
Clock color - Color picker
Clock position - Left|Center|Right|Hide
Font - Bold|Condensed|Light|Light Italic|Normal
AM/PM style - Normal|Small|Gone
Date style - Normal|Small|Gone
Date format - 14 styles too many to mentions|Custom JAVA format
BUGS?
404 NOT FOUND
PM me if you found any bugs
SCREENIES
{
"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"
}
​
INSTRUCTIONS
Download needed files here.
Also please test this fix for seconds not showing bug for custom format.
You can now use HH:MM SS or anything custom format with seconds
SECONDS FIX
Download & install Potato Clock settings here.
Extract the needed files.
Decompile your SystemUI.apk
Go to SystemUI.apk/smali then paste the smali in that folder
the smali directory will be
smali/com/potato/systemui/clocks/.SMALI FILES HERE
and the assets folder
SystemUI.apk/assets/.ttf files should be here
Go to res/layout/statusbar.xml
PHP:
<com.potato.systemui.clocks.ClockLeft android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:textStyle="normal" android:gravity="center" android:paddingLeft="1.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
- This is for Left Clock
PHP:
<com.potato.systemui.clocks.ClockRight android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:textStyle="normal" android:gravity="center" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
- This is for Right Clock
PHP:
<com.potato.systemui.clocks.ClockCenter android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:textStyle="normal" android:gravity="center" android:layout_width="fill_parent" android:layout_height="fill_parent" android:singleLine="true" />
- This is for Center clock
Put the codes in their right position
(Don't copy my whole statusbar.xml)
PHP:
<com.android.systemui.statusbar.StatusBarView android:orientation="vertical" android:background="#00000000" android:focusable="true" android:descendantFocusability="afterDescendants"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout android:gravity="center" android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="fill_parent">
<com.potato.systemui.clocks.ClockCenter android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:textStyle="normal" android:gravity="center" android:layout_width="fill_parent" android:layout_height="fill_parent" android:singleLine="true" />
</LinearLayout>
<LinearLayout android:orientation="horizontal" android:id="@id/icons" android:layout_width="fill_parent" android:layout_height="fill_parent">
<com.potato.systemui.clocks.ClockLeft android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:textStyle="normal" android:gravity="center" android:paddingLeft="1.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
<com.android.systemui.statusbar.IconMerger android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/notificationIcons" android:paddingLeft="1.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="1.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentRight="true" />
<com.potato.systemui.clocks.ClockRight android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:textStyle="normal" android:gravity="center" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
</LinearLayout>
<LinearLayout android:orientation="horizontal" android:id="@id/ticker" android:background="#000" 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/Theme.Holo.Wallpaper" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
<TextView android:textAppearance="@android:style/Theme.Holo.Wallpaper" 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="0.0px" android:singleLine="true" />
</com.android.systemui.statusbar.StatusBarView>
For those who have Potato Statusbar Gesture mod you can use this for center clock
PHP:
<com.potato.touchbar.TouchMe android:gravity="center" android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="fill_parent">
<com.potato.systemui.clocks.ClockCenter android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:textStyle="normal" android:gravity="center" android:layout_width="fill_parent" android:layout_height="fill_parent" android:singleLine="true" />
</com.potato.touchbar.TouchMe>
IF YOU ALREADY HAVE POTATO CLOCK JUST PASTE THE SMALI FILES (.smali) in
PHP:
SystemUI.apk\smali\com\potato\systemui\clocks
ISSUES
404 ISSUES NOT FOUND
CREDITS
PotatoInc
Our STARMAGIC Family
pollube31 - 24/7 tester
@Jay_SEAN - 12/2 tester
CYANOGENMOD
IF YOU LIKE OUR WORK YOU KNOW WHAT TO DO
IF YOU WANT TO USE THIS IN YOUR AWESOME WORK PLEASE SEND ME A PM
AND AT LEAST PRESS THANKS BUTTON
I SUFFER FROM SUPER HEADACHE VERSION 4 WHEN DOING THIS​
another great tutorial from potato master
Nice guide bro :3
mariozawa said:
WHAT IS THIS?[/SIZE
nicely :thumbup:​
Click to expand...
Click to collapse
im wait it looong time! Biggest thanks to PotatoInc
Also wait circle battery ^^
hi sir can i apply this mod in aosp?
Galaxy Pop Plus'ımdan Tapatalk 2 ile gönderildi.
give it a try!!
good
@mariozawa what will happen if you use RelativeLayout for the parent of all the statusbar elements since RelativeLayout can change it's childs rule. so far i know we can change relativelayout's child position directly from code. just a small question.
AuliaYF said:
@mariozawa what will happen if you use RelativeLayout for the parent of all the statusbar elements since RelativeLayout can change it's childs rule. so far i know we can change relativelayout's child position directly from code. just a small question.
Click to expand...
Click to collapse
I don't have any experience in RelativeLayout (Java part) hehe
But I think its a better idea than using multiple views:laugh:
mariozawa said:
I don't have any experience in RelativeLayout (Java part) hehe
But I think its a better idea than using multiple views:laugh:
Click to expand...
Click to collapse
yeah, but difficult to do for me lol
Sir Ozawa how about this one on your update with this cool mod thanks aloooooot sir
paul222008 said:
Sir Ozawa how about this one on your update with this cool mod thanks aloooooot sir
Click to expand...
Click to collapse
That is the first Potato Clock but the bug is it has memory leaks at that time.
But I'm building it again as I found that it is cool:laugh::laugh::laugh:
nice work
hi sir @mariozawa i just want to ask if there is a way to fix notifications overlap when using center clock of potato clock? thanks a lot..
markmellarpes said:
hi sir @mariozawa i just want to ask if there is a way to fix notifications overlap when using center clock of potato clock? thanks a lot..
Click to expand...
Click to collapse
Try putting them in different LinearLayouts.
_________________________________________
Thread is updated I wish anyone like it :fingers-crossed:
mariozawa said:
Try putting them in different LinearLayouts.
_________________________________________
Thread is updated I wish anyone like it :fingers-crossed:
Click to expand...
Click to collapse
How to update it if i am using it already???
Sent from my GT-S5360 using Tapatalk 2
vishal1404 said:
How to update it if i am using it already???
Sent from my GT-S5360 using Tapatalk 2
Click to expand...
Click to collapse
Just follow the steps on the first page for better result. :good:
mariozawa said:
Just follow the steps on the first page for better result. :good:
Click to expand...
Click to collapse
So do i need to do all things again??
sent from mobile
mariozawa said:
Try putting them in different LinearLayouts.
_________________________________________
Thread is updated I wish anyone like it :fingers-crossed:
Click to expand...
Click to collapse
How can i do that? any guide sir/maam? sorry noob here

Categories

Resources