[MOD][GUIDE][APR 17] Potato Clock Mods FINAL VERSION - Galaxy Y GT-S5360 General

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

Related

<REQ>[HOWTO] Change ICS App Switcher to Windows Phone 7 Style

http://forum.xda-developers.com/showthread.php?p=23744821
evilisto said:
WP7(Mango?) app switcher is like this :
{
"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"
}
and i made similar thing by modifying ics app switcher layout.
preview :
flashable mod is originally posted in nexus s theme forum.
[MOD] Change ICS App Switcher to Windows Phone 7 Style
this mod is related to framework-res.apk and SystemUI.apk so making universal version for any devices is difficult. so i write this simple guide for other rom / device users.
-----------------------------------------------------------------------------
* framework-res.apk
- /res/values/dimens.xml : change thumbnail size to..
Code:
<dimen name="thumbnail_height">305.0dip</dimen>
<dimen name="thumbnail_width">192.0dip</dimen>
these values are wvga devices only. if you have mdpi or xhdpi device, you have to adjust these values suitable to your screen size.
* SystemUI.apk
- /res/values/bools.xml
Code:
<bool name="config_recents_thumbnail_image_fits_to_xy">true</bool>
- /res/values/drawables.xml
Code:
<item type="drawable" name="status_bar_recents_background_solid">#ff33b1e1</item>
- /res/values/dimens.xml
Code:
<dimen name="status_bar_recents_thumbnail_width">192.0dip</dimen>
<dimen name="status_bar_recents_thumbnail_height">305.0dip</dimen>
- /res/layout-port/status_bar_recent_item.xml
Code:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout android:paddingLeft="@dimen/status_bar_recents_item_padding" android:paddingRight="@dimen/status_bar_recents_item_padding" android:layout_width="wrap_content" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout android:layout_gravity="center_vertical" android:id="@id/recent_item" android:paddingTop="@android:dimen/status_bar_height" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true">
<FrameLayout android:id="@id/app_thumbnail" android:background="@drawable/recents_thumbnail_bg" android:visibility="invisible" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="5.0dip" android:foreground="@drawable/recents_thumbnail_fg" android:layout_centerInParent="true">
<ImageView android:id="@id/app_thumbnail_image" android:layout_width="192.0dip" android:layout_height="305.0dip" />
<ImageView android:id="@id/app_icon" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="@dimen/status_bar_recents_app_icon_left_margin" android:layout_marginTop="0.0dip" android:scaleType="centerInside" android:adjustViewBounds="true" android:maxWidth="@dimen/status_bar_recents_app_icon_max_width" android:maxHeight="@dimen/status_bar_recents_app_icon_max_height" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" />
</FrameLayout>
<TextView android:textSize="@dimen/status_bar_recents_app_label_text_size" android:textColor="@color/status_bar_recents_app_label_color" android:ellipsize="marquee" android:id="@id/app_label" android:paddingTop="0.0dip" android:fadingEdge="horizontal" android:fadingEdgeLength="@dimen/status_bar_recents_fading_edge_length" android:layout_width="@dimen/status_bar_recents_app_label_width" android:layout_height="fill_parent" android:layout_marginLeft="@dimen/status_bar_recents_app_label_left_margin" android:layout_marginTop="100.0dip" android:scrollHorizontally="true" android:singleLine="true" android:layout_below="@id/app_thumbnail" android:layout_alignLeft="@id/app_thumbnail" android:layout_alignParentBottom="true" />
<TextView android:textSize="@dimen/status_bar_recents_app_description_text_size" android:ellipsize="marquee" android:id="@id/app_description" android:fadingEdge="horizontal" android:fadingEdgeLength="@dimen/status_bar_recents_fading_edge_length" android:layout_width="@dimen/status_bar_recents_app_label_width" android:layout_height="wrap_content" android:layout_marginLeft="@dimen/status_bar_recents_app_label_left_margin" android:layout_marginTop="40.0dip" android:scrollHorizontally="true" android:singleLine="true" android:layout_below="@id/app_label" android:layout_alignLeft="@id/app_thumbnail" android:layout_alignParentBottom="true" />
</RelativeLayout>
</FrameLayout>
- /res/layout-port/status_bar_recent_panel.xml
Code:
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.recent.RecentsPanelView android:id="@id/recents_root" android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<FrameLayout android:id="@id/recents_bg_protect" android:background="@drawable/status_bar_recents_background_solid" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_centerVertical="true">
<com.android.systemui.recent.RecentsHorizontalScrollView android:layout_gravity="bottom|left|center" android:id="@id/recents_container" android:scrollbars="none" android:fadingEdge="none" android:fadingEdgeLength="0.0dip" android:clipChildren="false" android:clipToPadding="false" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginRight="0.0dip" android:stackFromBottom="true" android:divider="@null">
<LinearLayout android:orientation="horizontal" android:id="@id/recents_linear_layout" android:clipChildren="false" android:clipToPadding="false" android:layout_width="fill_parent" android:layout_height="wrap_content" />
</com.android.systemui.recent.RecentsHorizontalScrollView>
</FrameLayout>
<include android:id="@id/recents_no_apps" android:visibility="invisible" android:layout_width="fill_parent" android:layout_height="fill_parent" layout="@layout/status_bar_no_recent_apps" />
</com.android.systemui.recent.RecentsPanelView>
and you'd better to edit landscape layout too..
- /res/layout-land/status_bar_recent_item.xml
Code:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout android:paddingLeft="@dimen/status_bar_recents_item_padding" android:paddingRight="@dimen/status_bar_recents_item_padding" android:layout_width="wrap_content" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout android:layout_gravity="center_vertical" android:id="@id/recent_item" android:paddingTop="@android:dimen/status_bar_height" android:layout_width="wrap_content" android:layout_height="wrap_content">
<FrameLayout android:id="@id/app_thumbnail" android:background="@drawable/recents_thumbnail_bg" android:visibility="invisible" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="@dimen/status_bar_recents_thumbnail_left_margin" android:layout_marginTop="@dimen/status_bar_recents_thumbnail_top_margin" android:foreground="@drawable/recents_thumbnail_fg" android:layout_alignParentLeft="true" android:layout_alignParentTop="true">
<ImageView android:id="@id/app_thumbnail_image" android:layout_width="115.0dip" android:layout_height="183.0dip" />
</FrameLayout>
<ImageView android:id="@id/app_icon" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="@dimen/status_bar_recents_app_icon_left_margin" android:layout_marginTop="@dimen/status_bar_recents_app_icon_top_margin" android:scaleType="centerInside" android:adjustViewBounds="true" android:maxWidth="@dimen/status_bar_recents_app_icon_max_width" android:maxHeight="@dimen/status_bar_recents_app_icon_max_height" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" />
<TextView android:textSize="@dimen/status_bar_recents_app_label_text_size" android:textColor="@color/status_bar_recents_app_label_color" android:ellipsize="marquee" android:id="@id/app_label" android:fadingEdge="horizontal" android:fadingEdgeLength="@dimen/status_bar_recents_fading_edge_length" android:layout_width="@dimen/status_bar_recents_app_label_width" android:layout_height="wrap_content" android:layout_marginLeft="@dimen/status_bar_recents_app_label_left_margin" android:layout_marginTop="@dimen/status_bar_recents_text_description_padding" android:scrollHorizontally="true" android:singleLine="true" android:layout_below="@id/app_thumbnail" android:layout_alignLeft="@id/app_thumbnail" />
<TextView android:textSize="@dimen/status_bar_recents_app_description_text_size" android:ellipsize="marquee" android:id="@id/app_description" android:fadingEdge="horizontal" android:fadingEdgeLength="@dimen/status_bar_recents_fading_edge_length" android:layout_width="@dimen/status_bar_recents_app_label_width" android:layout_height="wrap_content" android:layout_marginTop="@dimen/status_bar_recents_text_description_padding" android:scrollHorizontally="true" android:singleLine="true" android:layout_below="@id/app_label" android:layout_alignLeft="@id/app_thumbnail" />
</RelativeLayout>
</FrameLayout>
- /res/layout-land/status_bar_recent_panel.xml
Code:
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.recent.RecentsPanelView android:id="@id/recents_root" android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<FrameLayout android:id="@id/recents_bg_protect" android:background="@drawable/status_bar_recents_background" android:clipChildren="false" android:clipToPadding="false" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_alignParentBottom="true">
<com.android.systemui.recent.RecentsHorizontalScrollView android:layout_gravity="bottom|left|center" android:orientation="horizontal" android:id="@id/recents_container" android:scrollbars="none" android:fadingEdge="none" android:fadingEdgeLength="0.0dip" android:clipChildren="false" android:clipToPadding="false" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_marginRight="@dimen/status_bar_recents_right_glow_margin" android:stackFromBottom="true" android:divider="@null">
<LinearLayout android:orientation="horizontal" android:id="@id/recents_linear_layout" android:clipChildren="false" android:clipToPadding="false" android:layout_width="wrap_content" android:layout_height="fill_parent" />
</com.android.systemui.recent.RecentsHorizontalScrollView>
</FrameLayout>
<include android:id="@id/recents_no_apps" android:visibility="invisible" android:layout_width="fill_parent" android:layout_height="fill_parent" layout="@layout/status_bar_no_recent_apps" />
</com.android.systemui.recent.RecentsPanelView>
-----------------------------------------------------------------------------
Thanks to brucekey in rootzwiki
(this mod is based on his WEBAOKP mod.)
-----------------------------------------------------------------------------
Click to expand...
Click to collapse
Can someone port this to our device and CM9? a flashable zip would be nice if possible.
thanks
+1
10 chars
plus 99 , up and up. i love big thumbnail
+1
swipe to remove recent used programs is working?
Soon ics will be wp7
Sent from my GT-I9100 using xda premium
I made a thread for this a few weeks ago.. didn't have much interest
Sent from my GT-I9100 using xda premium
joshnichols189 said:
I made a thread for this a few weeks ago.. didn't have much interest
Sent from my GT-I9100 using xda premium
Click to expand...
Click to collapse
Same here dint see much interest in this one either until now.. also if you look in the nexus forums they have chrome preview like app switcher too fully working, ill post links in a bit.
Will be great if someone can take a look and make a flashable zip.
please someone to help us/??
Hello guys..
I'm from the Note forums and I made these mods for our device..
The problem with it on the I9100 is that it depends on framework-res.apk and SystemUI.apk which vary greatly between different ROMs and the I9100 have way too many ROMs to make these mods for each one of them!!
I want to help you, but you understand that it will be hard to make it for so many ROMs let alone the frequent updates those ROMs get..
So may I ask what is the most popular ROM here? would it be CM9? I will try to port it for one ROM first and see how it goes..
Note: I do NOT have I9100 so you will be testing it if I made it..
Please post here framework-res.apk and SystemUI.apk for the wanted ROM (AOSP ICS only, no TouchWiz)
Hydrogenics (a CM9 derivative i think) is quite a popular ROM (pretty f*cking awesome if you ask me! haha) so you might want to try with the latest release 02.04 attached are the files you asked for. Good luck and thanks for doing this!
Ok here is a quick zip and I want someone who is running Hydrogen ICS to test it..
Note:
- I do NOT have I9100 so you're flashing this at your own risk (Backup First!)
- If you installed any mod after flashing hydrogen ROM you'll likely lose them (as most mods are in framework-res.apk and SystemUI.apk just like this one)
Mods:
- Windows Phone 7 switcher: Download Link
- Chrome Browser switcher: Download Link
- Restore zip: Download Link
Let mo know how it goes
EDIT: sorry forgot to credit el_liberator for the zip strucrure..
i will try to make a zip for cm9 as soon as i get my adb working on windows 8
I have tried that mod in CM9 and it doesn't work.I think most of the people using CM9,so I attached the CM9 framework and systemUI to u.Thank you bro.
bluefa1con said:
i will try to make a zip for cm9 as soon as i get my adb working on windows 8
Click to expand...
Click to collapse
If you're planing on using the framework-res.apk and SystemUI.apk I posted for hydrogen ROM I don't think they'll play nicely cause I bet there are framework and settings differences between the 2 ROMs..
What baffles is there is not a single feedback if it's working or not even though many downloaded it :/
EDIT: Just like expected, it won't work on CM9..I've been waiting for someone to confirm it works on hydrogen before I try other ROMs..
matius44 said:
If you're planing on using the framework-res.apk and SystemUI.apk I posted for hydrogen ROM I don't think they'll play nicely cause I bet there are framework and settings differences between the 2 ROMs..
What baffles is there is not a single feedback if it's working or not even though many downloaded it :/
EDIT: Just like expected, it won't work on CM9..I've been waiting for someone to confirm it works on hydrogen before I try other ROMs..
Click to expand...
Click to collapse
Wouldn't surprise me, if most of the downloaders are in fact CM9 users and are ashamed cause they didn't read the instructions well before finding out it doesn't work.
Sent from my GT-I9100 using xda premium
Draak22 said:
Wouldn't surprise me, if most of the downloaders are in fact CM9 users and are ashamed cause they didn't read the instructions well before finding out it doesn't work.
Sent from my GT-I9100 using xda premium
Click to expand...
Click to collapse
Lol then CM9 users will wait till I get back home and mod for them
Sorry guys but can anyone upload me the framework-res.apk and SystemUI.apk from CM9 ROM?
For some I reason I don't know I can not download the ones kityan147 provided..
Thanks..
Here you. Let me know if you need anything else. I do have some mods installed though (Reloaded ICS & Blue Infinitum Theme). Don't know If that's a problem.
Edit: flashed back to stock CM9 and pulled the files so these should work.
Draak22 said:
Here you. Let me know if you need anything else. I do have some mods installed though (Reloaded ICS & Blue Infinitum Theme). Don't know If that's a problem.
Click to expand...
Click to collapse
Unfortunately that will cause some problems..They both have mods on framework and SystemUI so they will yield issues to those not using them, but thanks for the response
If it's not much to ask, please upload the stock ones, don't have very fast internet at the moment
Check post again. Flashed stock CM9 and reuploaded files.
Sent from my GT-I9100 using xda premium

[MOD][CM9) Samsung Galaxy S.3 Lockscreen UPDATED to CM9 RC-7 (20 March 2013)

MOD-CM9 SAMSUNG GALAXY S.3 INSPIRED LOCKSCREEN​
Click to expand...
Click to collapse
BUGS ! ! ,.YOU CANNOT CHANGE LOCKSCREEN BACKGROUND TO COLOR FILL OR CUSTOM IMAGE, OR YOU WILL GET BOOTLOP., YOU ONLY CAN SET YOUR LOCKSCREEN BACKGROUND WITH DEFAULT WALLPAPER
SCREENSHOTS & SCREENCAST PREVIEW
SCREENCAST PREVIEW
MOD-CM9 GT-I8150 GALAXY S.3 INSPIRED LOCKSCREEN SCREENCAST PREVIEW IN YOUTUBE click here <<
SCREENSHOTS
{
"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"
}
CHANGELOG :
Code:
[CENTER][B]4 January 2013[/B]
- Initial Release
[B]11 February 2013[/B]
- Added for CM9.RC5
- Fixed charging notification on lockscreen for CM9-RC5
[B]20 March 2013[/B]
- Updated to CM9 Rc-7[/CENTER]
Click to expand...
Click to collapse
DOWNLOAD & INSTALLATION
HOW TO INSTALL :
STEP - 1 . Go to SYSTEM SETTING - LOCKSCREEN :
=> Background ; "Default Wallpaper" ( don't select Color Fill or Custom Image, or you will get Bootlop )
STEP -2
CWM
WIPE CACHE
INSTAL ZIP
REBOOT
DOWNLOAD :
- CM9-RC7-GALAXY.S.3.LOCKSCREEN
OR
- CM9-RC-7-GALAXY.S.3.LOCKSCREEN_(DisableCapacitive)
Note : Disable Capacitive : Capacitive Back button touchkey light will turn off permanent
- REVERT_BACK_TO_STOK_CM9-RC7_LOCKSCREEN
​
Click to expand...
Click to collapse
QUESTIONS & ANSWERS :
1. DOES THE MOD WORK FOR OTHER ROM ?
Answer :" no"
2. HOW TO DISABLE NAVIGATION BAR ?
Answer : "Open Navigation Bar Apps, find it in your app drawer, do tap "Hide Navigation Bar (full screen)" & and do Reboot your wonder.
3. HOW TO ADD MORE BUTTON TO NAVIGATION BAR ?
Answer : " Go to SYSTEM SETTING - SYSTEM - NAVIGATION BAR and follow the instruction there​
Click to expand...
Click to collapse
Click to expand...
Click to collapse
CREDIT & THANKS TO :
Arco for CM9
Evilisto for source lockscreen
if you like this Mod, just press the thanks button:good:​
Nice
Thx for porting it to cm9 :good:
Sent from my Galaxy Wonder
ipromeh said:
Nice
Thx for porting it to cm9 :good:
Sent from my Galaxy Wonder
Click to expand...
Click to collapse
Enjoy mate .
Why did I get boot loop after flash?
Sent from my GT-I8150 using xda premium
ipromeh said:
Why did I get boot loop after flash?
Sent from my GT-I8150 using xda premium
Click to expand...
Click to collapse
I' m sorry mate, . just fine on me.
try to flash it from fresh clean stock CM9.Rc2. , without any other Mod, changing kernel. or else before..
good luck
added Lockscreen screencast preview in youtube => http://youtu.be/dynVQOPe6_s
No, if you flash the mod before first boot it will bootloop but if u flash after first boot it will work
Sent from my GT-I8150 using xda premium
Awesome lock screen. Had been waiting for someone to port this. Nice job, again
Edit: Sent from my Galaxy S Plus (not Galaxy W)
Juhan Jufri said:
Awesome lock screen. Had been waiting for someone to port this. Nice job, again
Click to expand...
Click to collapse
Yeah! Guess everyone wanted to have this one. :silly: THANKS!
but I couldn't figure out the difference between the
MOD CM9 GALAXY S.3 LOCKSCREEN WITH CAPACITIVE LIGHT ENABLE
and
MOD CM9 GALAXY S.3 LOCKSCREEN WITH CAPACITIVE LIGHT DISABLE...
EDIT: sorry, looked in your PhabletUI thread and saw this:
NOTE :
ENABLE CAPACITIVE LIGHT : TOUCHKEY LIGHT TURN ON
DISABLE CAPACITIVE LIGHT : TOUCHKEY LIGHT TURN OFF
[B U S T E D]
Nice ! but kinda laggy and hard to unlock ...
Sent from my GT-I8150 using xda premium
Op updated !
How to install & bugs !!
Since you are the master of mod for the ariesVE too, I got a question for you:
I have tried to move the clock of the mod more downwards, where it is located in the galaxy note2 lockscreen. I did this:
- /res/layout/keyguard_screen_tab_unlock.xml
to :
Code:
<?xml version="1.0" encoding="utf-8"?>
<GridLayout android:gravity="center_horizontal" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout android:layout_width="fill_parent" android:layout_height="332.0dip">
<com.android.internal.widget.multiwaveview.MultiWaveView android:orientation="horizontal" android:id="@id/unlock_widget" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_alignParentBottom="true" android:targetDescriptions="@array/lockscreen_target_descriptions_with_camera" android:directionDescriptions="@array/lockscreen_direction_descriptions" android:targetDrawables="@array/lockscreen_targets_with_camera" android:handleDrawable="@drawable/ic_lockscreen_handle" android:rightChevronDrawable="@drawable/ic_lockscreen_chevron_right" android:waveDrawable="@drawable/ic_lockscreen_outerring" android:outerRadius="@dimen/multiwaveview_target_placement_radius" android:hitRadius="@dimen/multiwaveview_hit_radius" android:vibrationDuration="20" android:snapMargin="@dimen/multiwaveview_snap_margin" android:feedbackCount="3" android:verticalOffset="0.0dip" android:horizontalOffset="0.0dip" />
<TextView android:visibility="gone" android:textAppearance="?textAppearanceMedium" android:textSize="@dimen/keyguard_lockscreen_status_line_font_size" android:textColor="?textColorSecondary" android:ellipsize="marquee" android:gravity="center_horizontal" android:id="@id/carrier" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginBottom="12.0dip" android:singleLine="true" android:layout_alignParentBottom="true" />
</RelativeLayout>
<com.android.internal.widget.DigitalClock android:layout_gravity="left" android:id="@id/time" android:layout_marginTop="@dimen/keyguard_lockscreen_status_line_clockfont_top_margin" android:layout_marginLeft="30.0dip" android:layout_marginBottom="12.0dip">
<TextView android:textAppearance="?textAppearanceMedium" android:textSize="@dimen/keyguard_lockscreen_clock_font_size" android:textColor="@color/lockscreen_clock_background" android:ellipsize="none" android:id="@id/timeDisplayBackground" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="6.0dip" android:singleLine="true" />
<TextView android:textAppearance="?textAppearanceMedium" android:textSize="@dimen/keyguard_lockscreen_clock_font_size" android:textColor="@color/lockscreen_clock_foreground" android:ellipsize="none" android:id="@id/timeDisplayForeground" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="6.0dip" android:singleLine="true" android:layout_alignLeft="@id/timeDisplayBackground" android:layout_alignTop="@id/timeDisplayBackground" />
</com.android.internal.widget.DigitalClock>
<LinearLayout android:layout_gravity="left" android:orientation="horizontal" android:layout_marginLeft="@dimen/keyguard_lockscreen_status_line_font_right_margin">
<TextView android:textAppearance="?textAppearanceMedium" android:textSize="@dimen/keyguard_lockscreen_status_line_font_size" android:ellipsize="marquee" android:id="@id/date" android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="true" />
<TextView android:textAppearance="?textAppearanceMedium" android:textSize="@dimen/keyguard_lockscreen_status_line_font_size" android:ellipsize="marquee" android:id="@id/alarm_status" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="16.0dip" android:singleLine="true" android:drawablePadding="4.0dip" />
</LinearLayout>
<TextView android:textAppearance="?textAppearanceMedium" android:textSize="@dimen/keyguard_lockscreen_status_line_font_size" android:ellipsize="marquee" android:layout_gravity="left" android:id="@id/status1" android:layout_marginLeft="@dimen/keyguard_lockscreen_status_line_font_right_margin" android:singleLine="true" android:drawablePadding="4.0dip" />
<Space android:layout_gravity="fill" />
<Button android:layout_gravity="left" android:id="@id/emergencyCallButton" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="4.0dip" android:layout_marginLeft="16.0dip" android:text="@string/lockscreen_emergency_call" android:drawableLeft="@drawable/lockscreen_emergency_button" android:drawablePadding="4.0dip" style="?android:attr/buttonBarButtonStyle" />
<LinearLayout android:gravity="center" android:orientation="horizontal" android:layout_width="fill_parent" android:weightSum="2.0" style="?android:attr/buttonBarStyle">
<Button android:textSize="@dimen/keyguard_lockscreen_status_line_font_size" android:layout_gravity="center_horizontal" android:id="@id/emergencyCallButton" android:visibility="gone" android:layout_width="0.0dip" android:layout_height="wrap_content" android:text="@string/lockscreen_emergency_call" android:drawableLeft="@drawable/lockscreen_emergency_button" android:drawablePadding="0.0dip" android:layout_weight="1.0" style="?android:attr/buttonBarButtonStyle" />
</LinearLayout>
<include android:layout_gravity="fill" android:id="@id/transport" android:layout_width="0.0dip" android:layout_height="0.0dip" android:layout_column="0" android:layout_row="0" android:layout_rowSpan="4" android:layout_columnSpan="1" layout="@layout/keyguard_transport_control" />
</GridLayout>
and yep, the s3 lockscreen disappeared fully and there was only the cm9 unlocker where the s3 should be.
(imagine your galaxy note mod, without the galaxy note frames, amd the cm9 instead.)
can you please help me out with this?
Thank you very much!!!
really love your work!
Sent from my GT-I9001 (not GalaxyW ) using xda premium
outerh3aven said:
Since you are the master of mod for the ariesVE too, I got a question for you:
I have tried to move the clock of the mod more downwards, where it is located in the galaxy note2 lockscreen. I did this:
- /res/layout/keyguard_screen_tab_unlock.xml
to :
Code:
<?xml version="1.0" encoding="utf-8"?>
<GridLayout android:gravity="center_horizontal" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout android:layout_width="fill_parent" android:layout_height="332.0dip">
<com.android.internal.widget.multiwaveview.MultiWaveView android:orientation="horizontal" android:id="@id/unlock_widget" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_alignParentBottom="true" android:targetDescriptions="@array/lockscreen_target_descriptions_with_camera" android:directionDescriptions="@array/lockscreen_direction_descriptions" android:targetDrawables="@array/lockscreen_targets_with_camera" android:handleDrawable="@drawable/ic_lockscreen_handle" android:rightChevronDrawable="@drawable/ic_lockscreen_chevron_right" android:waveDrawable="@drawable/ic_lockscreen_outerring" android:outerRadius="@dimen/multiwaveview_target_placement_radius" android:hitRadius="@dimen/multiwaveview_hit_radius" android:vibrationDuration="20" android:snapMargin="@dimen/multiwaveview_snap_margin" android:feedbackCount="3" android:verticalOffset="0.0dip" android:horizontalOffset="0.0dip" />
<TextView android:visibility="gone" android:textAppearance="?textAppearanceMedium" android:textSize="@dimen/keyguard_lockscreen_status_line_font_size" android:textColor="?textColorSecondary" android:ellipsize="marquee" android:gravity="center_horizontal" android:id="@id/carrier" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginBottom="12.0dip" android:singleLine="true" android:layout_alignParentBottom="true" />
</RelativeLayout>
<com.android.internal.widget.DigitalClock android:layout_gravity="left" android:id="@id/time" android:layout_marginTop="@dimen/keyguard_lockscreen_status_line_clockfont_top_margin" android:layout_marginLeft="30.0dip" android:layout_marginBottom="12.0dip">
<TextView android:textAppearance="?textAppearanceMedium" android:textSize="@dimen/keyguard_lockscreen_clock_font_size" android:textColor="@color/lockscreen_clock_background" android:ellipsize="none" android:id="@id/timeDisplayBackground" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="6.0dip" android:singleLine="true" />
<TextView android:textAppearance="?textAppearanceMedium" android:textSize="@dimen/keyguard_lockscreen_clock_font_size" android:textColor="@color/lockscreen_clock_foreground" android:ellipsize="none" android:id="@id/timeDisplayForeground" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="6.0dip" android:singleLine="true" android:layout_alignLeft="@id/timeDisplayBackground" android:layout_alignTop="@id/timeDisplayBackground" />
</com.android.internal.widget.DigitalClock>
<LinearLayout android:layout_gravity="left" android:orientation="horizontal" android:layout_marginLeft="@dimen/keyguard_lockscreen_status_line_font_right_margin">
<TextView android:textAppearance="?textAppearanceMedium" android:textSize="@dimen/keyguard_lockscreen_status_line_font_size" android:ellipsize="marquee" android:id="@id/date" android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="true" />
<TextView android:textAppearance="?textAppearanceMedium" android:textSize="@dimen/keyguard_lockscreen_status_line_font_size" android:ellipsize="marquee" android:id="@id/alarm_status" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="16.0dip" android:singleLine="true" android:drawablePadding="4.0dip" />
</LinearLayout>
<TextView android:textAppearance="?textAppearanceMedium" android:textSize="@dimen/keyguard_lockscreen_status_line_font_size" android:ellipsize="marquee" android:layout_gravity="left" android:id="@id/status1" android:layout_marginLeft="@dimen/keyguard_lockscreen_status_line_font_right_margin" android:singleLine="true" android:drawablePadding="4.0dip" />
<Space android:layout_gravity="fill" />
<Button android:layout_gravity="left" android:id="@id/emergencyCallButton" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="4.0dip" android:layout_marginLeft="16.0dip" android:text="@string/lockscreen_emergency_call" android:drawableLeft="@drawable/lockscreen_emergency_button" android:drawablePadding="4.0dip" style="?android:attr/buttonBarButtonStyle" />
<LinearLayout android:gravity="center" android:orientation="horizontal" android:layout_width="fill_parent" android:weightSum="2.0" style="?android:attr/buttonBarStyle">
<Button android:textSize="@dimen/keyguard_lockscreen_status_line_font_size" android:layout_gravity="center_horizontal" android:id="@id/emergencyCallButton" android:visibility="gone" android:layout_width="0.0dip" android:layout_height="wrap_content" android:text="@string/lockscreen_emergency_call" android:drawableLeft="@drawable/lockscreen_emergency_button" android:drawablePadding="0.0dip" android:layout_weight="1.0" style="?android:attr/buttonBarButtonStyle" />
</LinearLayout>
<include android:layout_gravity="fill" android:id="@id/transport" android:layout_width="0.0dip" android:layout_height="0.0dip" android:layout_column="0" android:layout_row="0" android:layout_rowSpan="4" android:layout_columnSpan="1" layout="@layout/keyguard_transport_control" />
</GridLayout>
and yep, the s3 lockscreen disappeared fully and there was only the cm9 unlocker where the s3 should be.
(imagine your galaxy note mod, without the galaxy note frames, amd the cm9 instead.)
can you please help me out with this?
Thank you very much!!!
really love your work!
Sent from my GT-I9001 (not GalaxyW ) using xda premium
Click to expand...
Click to collapse
Have you try just to flash my mod Galaxy Note LS ?.. coz ussually almost all my mod work too to s plus
Or if you want to build it by yourself, you better ask this guy who create the Mod => http://forum.xda-developers.com/showthread.php?t=1568697
Sent from my GT-I8150 using xda app-developers app
Adi_ai****eru said:
Have you try just to flash my mod Galaxy Note LS ?.. coz ussually almost all my mod work too to s plus
Or if you want to build it by yourself, you better ask this guy who create the Mod => http://forum.xda-developers.com/showthread.php?t=1568697
Sent from my GT-I8150 using xda app-developers app
Click to expand...
Click to collapse
Yeah! I know. Almost all sgs+ mods are working on w and almost w mods are working on sgs+.
I already tried your galaxy note mod. Was not so much satisfied... Sorry.
I thought of combine this 2 mods.
So I took the xml meantioned above ( the main xml for clock as you know, etc. This xml is similar to the galaxy note xml), modified it and compiled.
As I sad: It didn't work. I couldn't get my results as I wanted. Thanks anyway. Will ask Evilisto for help
:thumbup: keep it up!
Sent from my GT-I9001 using xda premium
outerh3aven said:
Yeah! I know. Almost all sgs+ mods are working on w and almost w mods are working on sgs+.
I already tried your galaxy note mod. Was not so much satisfied... Sorry.
I thought of combine this 2 mods.
So I took the xml meantioned above ( the main xml for clock as you know, etc. This xml is similar to the galaxy note xml), modified it and compiled.
As I sad: It didn't work. I couldn't get my results as I wanted. Thanks anyway. Will ask Evilisto for help
:thumbup: keep it up!
Sent from my GT-I9001 using xda premium
Click to expand...
Click to collapse
Good luck to you :thumbup:
Sent from my GT-I8150 using xda app-developers app
Will this work on my i9003?
nice work
Re: (MOD-CM9) Samsung Galaxy S.3 Inspired Lockscreen
How can i uninstall this?
Sorry for my english
Re: (MOD-CM9) Samsung Galaxy S.3 Inspired Lockscreen
nbrian2012 said:
Will this work on my i9003?
Click to expand...
Click to collapse
Chinmay was made it for galaxy sl
Sent from my GT-I9003 using xda premium
Re: (MOD-CM9) Samsung Galaxy S.3 Inspired Lockscreen
Will it work on mdpi resolution?
Sent from my LG-P500 using xda premium

[GUIDE] How to for Statusbar Icons Layout (Playing with Layout)

{
"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"
}
I just want to share this little Mod I hope someone will learn from this
1. Decompile SystemUI.apk first
2. Find this line on SystemUI.apk\res\layout\statusbar.xml
Code:
<LinearLayout android:gravity="center" android:orientation="horizontal" android:id="@id/icons" android:layout_width="fill_parent" android:layout_height="fill_parent">
3. Then choose from this Layout
(We only need to Modify the codes inside the Layout with android:id="@id/icons" )
CENTER CLOCK
Code:
[COLOR="Red"]<LinearLayout android:gravity="center" android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="fill_parent">[/COLOR]
<com.android.systemui.statusbar.Clock android:textStyle="normal" android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:gravity="center" android:paddingLeft="3.0dip" android:layout_width="fill_parent" android:layout_height="fill_parent" android:singleLine="true" />
[COLOR="Red"]</LinearLayout>[/COLOR]
<LinearLayout android:gravity="center" android:orientation="horizontal" android:id="@id/icons" android:layout_width="fill_parent" android:layout_height="fill_parent">
<com.android.systemui.statusbar.IconMerger android:gravity="left" android:orientation="horizontal" android:id="@id/notificationIcons" android:paddingLeft="3.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_weight="1.0" android:layout_alignParentLeft="true" />
<LinearLayout android:gravity="right" android:orientation="horizontal" android:id="@id/statusIcons" android:paddingRight="3.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentRight="true" />
</LinearLayout>
I just Add a new LinearLayout that will hold our Clock.
CLOCK TO LEFT
Code:
<LinearLayout android:gravity="center" android:orientation="horizontal" android:id="@id/icons" android:layout_width="fill_parent" android:layout_height="fill_parent">
<com.android.systemui.statusbar.Clock android:textStyle="normal" android:textAppearance="@android:style/TextAppearance.StatusBar.Icon"[COLOR="Red"] android:gravity="left"[/COLOR] android:paddingLeft="3.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
<com.android.systemui.statusbar.IconMerger [COLOR="Red"]android:gravity="left"[/COLOR] android:orientation="horizontal" android:id="@id/notificationIcons" android:paddingLeft="3.0dip" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1.0" android:layout_alignParentLeft="true" />
<LinearLayout [COLOR="Red"]android:gravity="right"[/COLOR] android:orientation="horizontal" android:id="@id/statusIcons" android:paddingRight="3.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentRight="true" />
</LinearLayout>
I just change their gravity so they will be positioned in their own gravity.
And I also change their orders in this code.
SWITCH
Code:
<LinearLayout android:orientation="horizontal" android:id="@id/icons" android:layout_width="fill_parent" android:layout_height="fill_parent">
<LinearLayout [COLOR="Red"]android:gravity="left"[/COLOR] android:orientation="horizontal" android:id="@id/statusIcons" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentRight="true" />
<com.android.systemui.statusbar.IconMerger [COLOR="Red"]android:gravity="left"[/COLOR] android:orientation="horizontal" android:id="@id/notificationIcons" android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_weight="1.0" android:layout_alignParentLeft="true" />
<com.android.systemui.statusbar.Clock android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" [COLOR="Red"]android:gravity="right"[/COLOR] android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
</LinearLayout>
I just change their gravity so they will be positioned in their own gravity.
And I also change their orders in this code.
LEFT SIDE DRIVE (LSD)
Code:
<LinearLayout android:orientation="horizontal" android:id="@id/icons" android:layout_width="fill_parent" android:layout_height="fill_parent">
<com.android.systemui.statusbar.Clock android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" [COLOR="Red"]android:gravity="left"[/COLOR] android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
<LinearLayout [COLOR="Red"]android:gravity="left"[/COLOR] android:orientation="horizontal" android:id="@id/statusIcons" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentRight="true" />
<com.android.systemui.statusbar.IconMerger [COLOR="Red"]android:gravity="left"[/COLOR] android:orientation="horizontal" android:id="@id/notificationIcons" android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_weight="1.0" android:layout_alignParentLeft="true" />
</LinearLayout>
I just change their gravity so they will be positioned in their own gravity.
And I also change their orders in this code.​
BTW Im on AOSP so if your statusbar.xml didn't have this android:textAppearance="@android:style/TextAppearance.StatusBar.Icon"
just copy the style from your statusbar.xml
Helpful guide.! May help somewhere in future if I forget..
Cool
Sent from my GT-S5830i using xda app-developers app
Nice. Will try it ASAP
Status bar Invisible :'(
Ok i m having a problem :'( every time when i m changing statusbar.xml my system ui became invisible after reboot :'( i dont know what to do... and i can't find this
<LinearLayout .........>android:gravity="center" <...........android: orientation="horizontal"
in my xml its like <LinearLayout android: orientation="horizontal".........
Goku Baba said:
Ok i m having a problem :'( every time when i m changing statusbar.xml my system ui became invisible after reboot :'( i dont know what to do... and i can't find this
<LinearLayout .........>android:gravity="center" <...........android: orientation="horizontal"
in my xml its like <LinearLayout android: orientation="horizontal".........
Click to expand...
Click to collapse
Just look for this
android:id="@id/icons"
Sory
oot sir,how to move the notification icon to right below the batery text?tia
Sent from my GT-S5360 using xda app-developers app
psidco said:
Sory
oot sir,how to move the notification icon to right below the batery text?tia
Sent from my GT-S5360 using xda app-developers app
Click to expand...
Click to collapse
Like this one?Take a look at this,
http://forum.xda-developers.com/showthread.php?p=44037646#post44037646
Yes.thats awesome.can u tell the trick please
Sent from my GT-S5360 using xda app-developers app
psidco said:
Yes.thats awesome.can u tell the trick please
Sent from my GT-S5360 using xda app-developers app
Click to expand...
Click to collapse
Just move your
<com.android.systemui.statusbar.IconMerger android:gravity="center_vertical" androidrientation="horizontal" android:id="@id/notificationIcons" androidaddingLeft="6.0dip" android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_weight="1.0" android:layout_alignParentLeft="true" />
Click to expand...
Click to collapse
then set the gravity to right
Yes,i try it.but it wont go to right.it always in front of net speed.(see ss).its evo x4.i set net speed to 20 dip.but it wont go right.i hope u know what i mean.sory bad english
Sent from my GT-S5360 using xda app-developers app
This
Sent from my GT-S5360 using xda app-developers app
Can u send me your statusbar.xml sir
Sent from my GT-S5360 using xda app-developers app
very helpful guide
psidco said:
This
Sent from my GT-S5360 using xda app-developers app
Click to expand...
Click to collapse
how can we make the status bar transperent
Sent from my GT-S6102 using Tapatalk 2
ChaTy said:
how can we make the status bar transperent
Sent from my GT-S6102 using Tapatalk 2
Click to expand...
Click to collapse
Change hexcode on statusbar.xml to #00000000
Sent from my GT-S5360
hi.. maybe someone can help me.. i have sony xperia ray and i flashed rom named xperia ultimate hd 5.0.1 and changed the language to hebrew with locale select and now my connectivity (data, mobile signal, wifi, battery) icons in the status bar are next to the clock and i want to move these icons to the right side..
screenshot attached
try this later :3
---------- Post added at 04:21 PM ---------- Previous post was at 04:08 PM ----------
nice work :good:
signal and batt icon
Hey author
How to change the position of signal bar to the left batterry to the right imean rearranging each icon one by one side ti side
I tried to edit but always end up two icon on the same side
hokage20xda said:
Hey author
How to change the position of signal bar to the left batterry to the right imean rearranging each icon one by one side ti side
I tried to edit but always end up two icon on the same side
Click to expand...
Click to collapse
Because Signal Icons,Data and Battery icons are in one Layout view only so you cant separate them nor re arrange.:good: .

[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?

Categories

Resources