Help needed with moddifying the systemui - Verizon Samsung Galaxy S III

hello i need your help with modifying the systemui.apk from touchwiz.
to start off i have decomplied the systemui.apk and framework-res.apk in my android dev linux vmware machine, i did load in the framworks + the twframework.
what i am trying to do is remove the brigness slider and the quick setting toggles from the notifaction bar and i did so by removing these lines from layout/tw_status_bar_expaneded.xml and i edited it on eclipse
<com.wanamlite.systemui.quickpanel.PowerWidget android:id="@id/exp_power_stat" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/notification_panel_header_height" />
<HorizontalScrollView android:id="@id/quicksetting_scroller" android:scrollbars="none" android:layout_width="wrap_content" android:layout_height="@dimen/quick_setting_button_height" android:layout_marginTop="@dimen/tw_notification_panel_header_height">
<com.android.systemui.statusbar.policy.quicksetting.QuickSettingPanel androidrientation="horizontal" android:id="@id/quicksetting_container" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" android:divider="@drawable/tw_black_bg" android:showDividers="middle" />
</HorizontalScrollView>
and
<LinearLayout androidrientation="vertical" android:id="@id/brightness_controller" android:background="#ff000000" android:layout_width="fill_parent" android:layout_height="56.0dip">
<LinearLayout androidrientation="horizontal" android:layout_width="fill_parent" android:layout_height="55.0dip">
<ImageView android:id="@id/brightness_icon" android:clickable="true" android:layout_width="25.0dip" android:layout_height="fill_parent" android:layout_marginLeft="13.0dip" android:src="@drawable/ic_sysbar_brightness" android:contentDescription="@string/accessibility_brightness_icon" />
<FrameLayout android:id="@id/brightness_group" android:layout_width="fill_parent" android:layout_height="fill_parent">
<com.android.systemui.statusbar.policy.ToggleSlider android:id="@id/brightness" android:layout_width="fill_parent" android:layout_height="fill_parent" systemui:text="@string/status_bar_settings_auto_brightness_label" />
<com.android.systemui.statusbar.policy.ToggleSlider android:id="@id/auto_brightness" android:layout_width="fill_parent" android:layout_height="fill_parent" systemui:text="@string/status_bar_settings_auto_brightness_label" />
</FrameLayout>
</LinearLayout>
<View android:background="#ff091a24" android:layout_width="fill_parent" android:layout_height="1.0dip" />
</LinearLayout>
after i did that i recomiled it with apktool and it had no problems, i copyed the orignal androidmanifest and meta-inf into the modified apk, zipaligned and made a flashable zip
when i booted the phone i had no status bar and the systemui was crashing so i restored it

moved to q&a as this is a question and not actual development work ready to be released. Please note for the future that questions go into the q&a section.

Also, you don't need to post the same question twice.... you posted the same thing at 11:15 yesterday and this one at 6pm yesterday...
Being annoying like that is no way to get help from anyone.

Brian Gove said:
Also, you don't need to post the same question twice.... you posted the same thing at 11:15 yesterday and this one at 6pm yesterday...
Being annoying like that is no way to get help from anyone.
Click to expand...
Click to collapse
Are you going to help because I'm here to learn
Sent from my SCH-I535 using xda app-developers app

Related

[Q] Change the Asus blue color of clock/battery/etc

Hello,
Nice to see the activity in this new forum! Helps me a lot!
Question: Is it possible to change the blue color Asus TF uses for the clock/battery etc? Allso the loading screens with the blue glare.
Greetings!
it was a services.jar edit in 2.x, if i can ever get my computer to decompile/recomiple stuff properly, i could give it a shot..
Yeah, you need to open the the systemui.apk, replace desired .png, repackage, and push into /system/app.
Thanks, i'm gonna try it this evening!
Pacifik said:
Yeah, you need to open the the systemui.apk, replace desired .png, repackage, and push into /system/app.
Click to expand...
Click to collapse
The systemui.apk does not control the clock. It only controls the wifi connection and part of the battery. I belive that the services.jar controls the clock. I am still trying to figure that out but I do not know smali. I know this because I have 6 themes http://forum.xda-developers.com/showthread.php?t=1116139 and I have changed the battery and wifi on them all but no change to the clock.
the loading screens, if you mean the blue circle that spins though, SHOULD be a image inside systemUI or framework-res (i really need to get off my butt and look at 3.x in regards to theming)
Hey Pacifik, i've found the file status_bar_notification_area.xml in the SystemUi.apk. It's in the folder layout-xlarge. Theres an #colorcode, i believe from the clock. The only problem is i cant check because i get errors using apktool. It says 'exception in thread "main" brut etc etc etc... So i'm gonna figure that out first.
hasselaar_nl said:
Hey Pacifik, i've found the file status_bar_notification_area.xml in the SystemUi.apk. It's in the folder layout-xlarge. Theres an #colorcode, i believe from the clock. The only problem is i cant check because i get errors using apktool. It says 'exception in thread "main" brut etc etc etc... So i'm gonna figure that out first.
Click to expand...
Click to collapse
Here is what is in that xml
Code:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:orientation="horizontal" android:id="@id/notificationArea" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentRight="true"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui">
<LinearLayout android:orientation="horizontal" android:id="@id/notificationAndImeArea" android:layout_width="wrap_content" android:layout_height="fill_parent">
<com.android.systemui.statusbar.tablet.InputMethodButton android:id="@id/imeSwitchButton" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_marginLeft="8.0dip" android:src="@drawable/ic_sysbar_ime_default" />
<com.android.systemui.statusbar.tablet.NotificationIconArea android:id="@id/notificationIcons" android:layout_width="wrap_content" android:layout_height="fill_parent">
<view android:layout_gravity="center_vertical" android:id="@id/icons" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_marginLeft="8.0dip" class="com.android.systemui.statusbar.tablet.NotificationIconArea$IconLayout" />
<View android:background="@drawable/notification_icon_area_smoke" android:clickable="false" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_alignLeft="@id/icons" android:layout_alignRight="@id/icons" />
</com.android.systemui.statusbar.tablet.NotificationIconArea>
</LinearLayout>
<LinearLayout android:gravity="center" android:id="@id/notificationTrigger" android:layout_width="wrap_content" android:layout_height="fill_parent">
<com.android.systemui.statusbar.tablet.HoloClock android:id="@id/clock" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="4.0dip" android:layout_marginRight="4.0dip" android:layout_marginBottom="3.0dip">
<TextView android:textSize="40.0sp" android:textColor="#ff525e79" android:id="@id/time_solid" android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="true" />
</com.android.systemui.statusbar.tablet.HoloClock>
<TextView android:textSize="16.0sp" android:textColor="#ff606060" android:gravity="center" android:id="@id/network_text" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_marginLeft="6.0dip" android:layout_marginRight="6.0dip" android:singleLine="true" />
<LinearLayout android:gravity="center" android:orientation="horizontal" android:id="@id/signal_battery_cluster" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_marginRight="16.0dip">
<ImageView android:id="@id/bluetooth" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<FrameLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="4.0dip">
<ImageView android:id="@id/network_signal" android:paddingLeft="10.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:id="@id/network_type" android:paddingLeft="10.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:id="@id/network_direction" android:paddingLeft="10.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:id="@id/network_roaming" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</FrameLayout>
<ImageView android:id="@id/battery" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
Ok I can confirm that I was incorrect. It is in the systemui.apk it is in the SystemUI\res\layout-xlarge\status_bar_notification_area.xml line 14 thanks to Roach2010 for finding this.
<TextView android:textSize="40.0sp" android:textColor="#ff525e79" android:id="@id/time_solid" android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="true" />
Hey Hatman, sorry i called you Pacifik...
I hope it's the right code... only my SystemUI.apk is messed up on the TF. It keepsshowing the Asus blinking bootscreen. I've tried some things to restore but so far nothing helps.
Is it possible to install a complete new rom form sd or something like that?
hasselaar_nl said:
Hey Hatman, sorry i called you Pacifik...
I hope it's the right code... only my SystemUI.apk is messed up on the TF. It keepsshowing the Asus blinking bootscreen. I've tried some things to restore but so far nothing helps.
Is it possible to install a complete new rom form sd or something like that?
Click to expand...
Click to collapse
If you are rooted then just install Prime 1.5 and it will fix that. I have just added the themed clocks to all of my themes. http://forum.xda-developers.com/showthread.php?t=1116139
If you have clockwork recovery you can reflash your rom or flashing a theme might fix it. What are you using?
Thanks for the help, but i fixed it: http://forum.xda-developers.com/showthread.php?t=1149111

[REQ] Only Lock Button on the right corner of statusbar. (xxlsc)

Can anyone help me to find how to add a lock button right corner of statusbar? I want to flashable zip or etc...
serkobe said:
Can anyone help me to find how to add a lock button right corner of statusbar? I want to flashable zip or etc...
Click to expand...
Click to collapse
i also look for that mod
i hope someone is to good give us that mod
did you check Ofeliax's mods for XXLSC.. lock button is in the status bar
ctlemal sent
nokiamodeln91 said:
did you check Ofeliax's mods for XXLSC.. lock button is in the status bar
Click to expand...
Click to collapse
It is fully transparent and not stock. I want only lock button :/
Always keep you stock systemUI.apk backup on the phone incase of FCs after the new UI is placed. Use root explorer to replace back old
Decompile SystemUI.apk
go to \res\layout
open tw_status_bar.xml with notepad++
add this line
Code:
<com.android.systemui.statusbar.policy.KeyButtonView android:id="@id/back" android:paddingLeft="2.0dip" android:paddingRight="2.0dip" android:layout_width="30.0dip" android:layout_height="fill_parent" android:src="@drawable/ic_sysbar_lock" android:layout_toRightOf="@id/recent_apps" android:contentDescription="@string/accessibility_back" systemui:keyCode="26" systemui:glowBackground="@drawable/ic_sysbar_highlight" />
above
Code:
com.android.systemui.statusbar.policy.Clock
then add a ic_sysbar_lock.png (140X96)to \res\drawable-xhdpi
recompile SystemUI.apk
serkobe said:
It is fully transparent and not stock. I want only lock button :/
Click to expand...
Click to collapse
nokiamodeln91 said:
Always keep you stock systemUI.apk backup on the phone incase of FCs after the new UI is placed. Use root explorer to replace back old
Decompile SystemUI.apk
go to \res\layout
open tw_status_bar.xml with notepad++
add this line
Code:
<com.android.systemui.statusbar.policy.KeyButtonView android:id="@id/back" android:paddingLeft="2.0dip" android:paddingRight="2.0dip" android:layout_width="30.0dip" android:layout_height="fill_parent" android:src="@drawable/ic_sysbar_lock" android:layout_toRightOf="@id/recent_apps" android:contentDescription="@string/accessibility_back" systemui:keyCode="26" systemui:glowBackground="@drawable/ic_sysbar_highlight" />
above
Code:
com.android.systemui.statusbar.policy.Clock
then add a ic_sysbar_lock.png (140X96)to \res\drawable-xhdpi
recompile SystemUI.apk
Click to expand...
Click to collapse
Thnx for all information ) You are the best
I tried the oleafix's mod for xxlsa. It still works for xxlsc... But thnx for all again I'll keep in my mind.
Old post but cant find anything better.
Can anyone help with getting this mod on the I9305
I have tried the one above and couldnt get it working.
How to decompile and recompile an .apk? I oppened SystemUI.apk with winrar and try to add codes but couldn't save.
nokiamodeln91 said:
Always keep you stock systemUI.apk backup on the phone incase of FCs after the new UI is placed. Use root explorer to replace back old
Decompile SystemUI.apk
go to \res\layout
open tw_status_bar.xml with notepad++
add this line
Code:
<com.android.systemui.statusbar.policy.KeyButtonView android:id="@id/back" android:paddingLeft="2.0dip" android:paddingRight="2.0dip" android:layout_width="30.0dip" android:layout_height="fill_parent" android:src="@drawable/ic_sysbar_lock" android:layout_toRightOf="@id/recent_apps" android:contentDescription="@string/accessibility_back" systemui:keyCode="26" systemui:glowBackground="@drawable/ic_sysbar_highlight" />
above
Code:
com.android.systemui.statusbar.policy.Clock
then add a ic_sysbar_lock.png (140X96)to \res\drawable-xhdpi
recompile SystemUI.apk
Click to expand...
Click to collapse
You need to use apktool to decompile an apk
DaveLTE said:
Old post but cant find anything better.
Can anyone help with getting this mod on the I9305
I have tried the one above and couldnt get it working.
Click to expand...
Click to collapse
You're on the wrong forum
Juhan Jufri said:
You're on the wrong forum
Click to expand...
Click to collapse
he's maybe on the wrong phone forum but the solutions are the same
Hello,
sorry for asking that, but I've tried the Mod on the Galaxy S3, but after install, system always force close. Does someone maybe have a solution that fixes this problem? :crying:
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/black_bg" android:background="#ff000000" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="fill_parent" />
<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/status_bar_contents" android:paddingLeft="6.0dip" android:paddingRight="6.0dip" android:layout_width="fill_parent" android:layout_height="fill_parent">
<LinearLayout android:orientation="horizontal" android:id="@id/notification_icon_area" android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_weight="1.0" android:alpha="@dimen/notification_icon_area_alpha">
<TextView android:textSize="15.0dip" android:textColor="#ffffffff" 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/operatorLogoIcon_org" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="fill_parent" android:src="@drawable/tw_stat_notify_operator_logo_org" />
<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" />
<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:orientation="horizontal" android:id="@id/system_icon_area" android:layout_width="wrap_content" android:layout_height="fill_parent" android:alpha="@dimen/system_icon_area_alpha">
<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">
<include android:id="@id/signal_cluster" android:layout_width="wrap_content" android:layout_height="wrap_content" layout="@layout/signal_cluster_view" />
<TextView android:textSize="@dimen/status_bar_battery_text_size" android:textColor="#ffffffff" 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>
[COLOR="MediumTurquoise"]<com.android.systemui.statusbar.policy.KeyButtonView android:id="@id/back" android:paddingLeft="2.0dip" android:paddingRight="2.0dip" android:layout_width="30.0dip" android:layout_height="fill_parent" android:src="@drawable/ic_sysbar_lock" android:layout_toRightOf="@id/recent_apps" android:contentDescription="@string/accessibility_back" systemui:keyCode="26" systemui:glowBackground="@drawable/ic_sysbar_highlight" />[/COLOR]
<com.android.systemui.statusbar.policy.Clock android:textSize="@dimen/status_bar_clock_text_size" android:textColor="#ffffffff" android:ellipsize="none" android:gravity="left|center" android:id="@id/clock" android:paddingLeft="3.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" android:includeFontPadding="false" />
</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:textColor="#ffffffff" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
<TextView android:textAppearance="@style/TextAppearance.StatusBar.PhoneTicker" android:textColor="#ffffffff" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
</com.android.systemui.statusbar.phone.TickerView>
</LinearLayout>
</com.android.systemui.statusbar.phone.PhoneStatusBarView>
Blue is the part I've added in "SystemUI\res\layout\status_bar.xml"
Using a Galaxy S3 with Android 4.2.2.

Galaxy Young GT-S6310 Development Thread

Quote from @PipoSerrano about CM for GT-S6310
if anyone know how to port, or is a developers and want to help us on project Cyanogenmod, please contact @PipoSerrano or @paul vity. Please and thank you
Click to expand...
Click to collapse
Quote from @paul vity about CM for GT-S6310
We still need developers or people who know how to use LINUX experienced in compiling from repo, etc..
The problem we have is not having the right computer, as with mine, that to me is worth Roms but compiling is small.
I would appreciate very much and would be in the credits of the CM ROM 11 besides that would come into our group to speak more of the details of the compilation.
It is urgent, but not this project goes forward by only a PC problem.
Thank you all.
Click to expand...
Click to collapse
Quote from @franpek33 about CM for GT-S6310
Could anyone help me complete the device tree that was incomplete according've been told?
It is this:
https://github.com/yajnab/android_de...msung_GT-S6310
You have to run the setup.sh and do repo sync and must be completed.
Thanks to @Yajnab.
Sorry for my bad english.
Click to expand...
Click to collapse
==============================================================================================================================
ok, let's to the point... because this device don't have a new sub forum on xda, I will gather all the rom, theme, mod, and others to be collected into one thread is here. it aims to facilitate the people to look for it and post the question here only and myself here also hope the moderator of this forum in order to provide a new subforum for this device :good:
JOIN WITH US:
[Temporarry] Official Group Samsung Galaxy Young GT-S6310 Facebook Indonesia
Official Forum Galaxy Young GT-S6310 Kaskus Indonesia
Official Twitter Galaxy Young GT-S6310 Indonesia
Click to expand...
Click to collapse
ROM Section
ROM Emotion v7 by @paul vity
http://forum.xda-developers.com/showpost.php?p=52266214&postcount=768
[GT- S6310][4.1.2]Rom Custom emotion v6 AOSP4.2 by @paul vity
http://forum.xda-developers.com/showpost.php?p=51156861&postcount=640
[rom][jb 4.1.2][gt-s6310][16/03/14] gnu rom by @bamzzz
http://forum.xda-developers.com/showthread.php?t=2682696
PureKat TouchWiz Edition
http://forum.xda-developers.com/showthread.php?p=50709355
JBeleria ROM from Luthfy Nur Wahyudi
http://forum.xda-developers.com/showpost.php?p=50513725&postcount=461
Rom Custom Emotion V5 BLACK GT-S6310 by @paul vity
http://forum.xda-developers.com/showpost.php?p=50468128&postcount=453
[ROM] EmotionV4 GT-S6310,6310L,6310T,6310B by @paul vity
http://forum.xda-developers.com/showpost.php?p=49693721&postcount=271
[ROM] [DEODEX] Katik by Dicky Bahrian[/MENTION]
http://forum.xda-developers.com/showpost.php?p=50231029&postcount=393
T.R.I.D ROM v1.2 by Pak Ican[/MENTION]
http://forum.xda-developers.com/showpost.php?p=50231328&postcount=394
[ROM] Pure JellyBean TouchWiz Version v1.2
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"
}
Click to expand...
Click to collapse
Code:
[B]Main Features:[/B]
- Deodex all apk
- Rooted
- Busybox
- Signin all APK
- Zipalign
- 4.2 Expanded statusbar
- 7 EPM
- 4 Way Boot
- Custom Bootanimation
- etc....
Code:
What's Needed:
- Firmware DXAMC/XXAMC above
- Fresh StockRom recommended
- CWM
Code:
Instalation:
- Download the file [URL="http://d-h.st/vGq"]HERE[/URL]
- entering CWM
- Wipe Data and Cache
- install file
- wait for a while
- Done
Code:
Buglist:
- toggle flashligt FC (cause camera on this device not supported with flashlight)
- android beam + sbeam FC
- auto on off FC
- multiwindow, ripple effect not work (will fix soon)
- you search and tell me
Thanks To:
- tdunham @xda
- akash akya @xda
- bombaybadboy @xda
- majdinj @xda
- Sulistyo
- You for Donation
Swap External to Internal Memory
go here forum.xda-developers.com/showthread.php?t=2469422
How to Deodex Using DSIXDA Kitchen
go here http://forum.xda-developers.com/showthread.php?t=2373353
How to Enable Softkey Button
go here http://forum.xda-developers.com/showthread.php?p=43825174#post43825174
How to remove yellow text on homescreen
go here http://forum.xda-developers.com/showpost.php?p=50511343&postcount=455
INSTALLING CWM Recovery 6.0.3.6
Know Bug:
-restart recovery
-restart bootloader(device not detected?)
How to Install Recovery:
1-Extract rar
2-Download Mode (Vol- + Home + Power)
3-Open Odin v3.07
4-Put recovery.tar.md5 on PDA
5-Start
Download:Mirror 2, Mirror 2
but if you get stuck on CWM just use this -> https://www.dropbox.com/s/7fiyrc70vggyv2c/vM00CWM.zip <- then, flash that file on cwm and a new recovery will appear and just reboot the phone
nb:
1. from http://forum.android.com.pl/f893/rom-kernel-cwm-gt-s6310-young-young-v3-0-12-11-2013-a-331416/, so give thanks to him
2. sorry adfly link it, it adfly link from those who make this cwm file. I am afraid to upload to a different mirror
3. just replace ****** to adfly
How to rooting (thx to Djalo)
- Download this file -> http://djalo.bugs3.com/Galaxy6310/supersu.zip
- Install from CWM
- Done
HOW TO FLASHING/UPDATE FIRMWARE AND ANDROID VERSION
What you need?
1. A firmware. you can search google or open samfirmware.com
2. Odin. you can use odin from Djalo
3. samsung USB Driver. if you running on win 7, when you connect on internet its automatical download your driver. if not, use this
Code:
http://www.mediafire.com/download/hzlnda0l5t8qyes/SAMSUNG_USB_Driver_for_Mobile_Phones%283%29.exe
http://download.windowsupdate.com/msdownload/update/driver/drvs/2013/06/20568715_2a22f9943e9161fdd3529fed502f22abb3a82daf.cab
https://www.dropbox.com/s/k2omtf2qkhq98ln/SAMSUNG_USB_Driver_for_Mobile_Phones.zip
How to?
1. Download the firmware your chosen
2. enter the download mode ( power + home + vol down)
3. connect your phone to the odin with usb
4. wait till odin detect your phone
5. select the file firmware your download before
6. choose start
7. wait till finish and it will automatical reboot
Another Mirror:
MIRROR (DXAME1) Single Link:
Code:
http://www.mediafire.com/download/pebu26g072a2rfa/S6310DXAME1_S6310OLBAME1_XSP.zip
http://uploaded.net/file/6hbnqgt8
http://rapidgator.net/file/dbebfd633e9f71f9e8167a8f105c1c87
http://uptobox.com/9zmnagi9f8ie
http://depositfiles.com/files/uww2go4dw
https://shareprofi.com/bu4g43e44lze
DXAMI2 (Update November 2013)
Code:
http://uploaded.net/file/of5kus8x
http://rapidgator.net/file/9e76052eb5a5d31fd9c72e1f3d46cbcc
http://terafile.co/56911a6a3527
http://terafile.co/908334246579
http://terafile.co/670739889384
XXAMK1 (Update Desember 2013)
Code:
http://rapidgator.net/file/575a825c25ecfda94111255f8ab07650
http://uploaded.net/file/bclce1s3
http://terafile.co/141c7860dd65/PHE-S6310XXAMK1-20131210144955.zip
http://terafile.co/670739889384
HOW TO DISABLE/ENABLE SHUTTER SOUND CAMERA
What you need?
1. Root explorer (you phone must be rooted first)
How to?
1. open root explorer
2. go to /system/csc/Others.xml and open it
3. then paste this <CscFeature_Camera_ShutterSoundMenu>true</CscFeature_Camera_ShutterSoundMenu> before </FeatureSet>
4. save and exit
5. then reboot your phone
6. then open the camera, then check it works or not
[TOOL/CWM][JB 4.1.2][GT-S6310] Backup / Restore EFS Partition by @bamzzz
http://forum.xda-developers.com/showthread.php?p=51297705
How to remove icon keyboard on statusbar
http://forum.xda-developers.com/showpost.php?p=51126186&postcount=622
Dsixda Kitchen now support for GT-S6310 all variants
http://forum.xda-developers.com/showpost.php?p=50647219&postcount=506
HOW TO SHOWING BATTERY PERCENTAGE & TOGGLE
hi everyone, i'll share this guide. this guide may will work on other device with JB 4.1.2 touchwiz version or may above. this is just hidden features from samsung and i know how to showing this
Whats you need?
1. you must know how to compile-decompile apk
2. Secsettings deodex
3. tools for compile decompile
How to?
1. decompile your secsettings
2. then go to smali\com\android\settings\DisplaySettings.smali
3. find this
iget-object v0, v0, Lcom/android/settings/DisplaySettings;->mDisplayBatteryLevel:Landroid/preference/CheckBoxPreference;
4. look for this code
invoke-virtual/range {v17 .. v18}, Landroid/preference/PreferenceScreen;->removePreference(Landroid/preference/Preference);Z
5. and now can delete that line or just to add # on first line, and will look like this
# invoke-virtual/range {v17 .. v18}, Landroid/preference/PreferenceScreen;->removePreference(Landroid/preference/Preference);Z
6. save and then compile you setting
7. push/flash
NB: do with your own risk. sorry for bad english
[MOD][GUIDES] SecMms.apk TouchWiz Mods!
give thanks to jovy23!!!
http://forum.xda-developers.com/showthread.php?t=2172543
[MOD] 4-Way Reboot - How to (JB)
give thanks to kahvitahra!!!
http://forum.xda-developers.com/showpost.php?p=38379872&postcount=184
Cyanogenmod Section
Cyanogenmod 11 [4.4.2] by @DevSwift1
http://forum.android.com.pl/f893/cya...11-0-a-371762/
Cyanogenmod 11 [4.4.2] by @werty100
http://www.htcmania.com/showthread.php?t=751510
Cyanogenmod 10 by @DevSwift1
http://forum.xda-developers.com/showpost.php?p=49440589&postcount=129
Kernel Section
Mammoth Kernel by mamutos
v2 You can see on here
http://forum.xda-developers.com/showpost.php?p=49493947&postcount=171
v3 You can see on here
http://forum.xda-developers.com/showpost.php?p=49551829&postcount=202
v3.5 You can see on here
http://forum.xda-developers.com/showpost.php?p=49555144&postcount=208
v4 You can see on here
http://forum.xda-developers.com/showpost.php?p=49728919&postcount=280
v4.1 You can see on here
http://forum.xda-developers.com/showpost.php?p=49778562&postcount=308
v5 You can see on here
http://forum.xda-developers.com/showpost.php?p=51688991&postcount=719
Theme section
[THEME][GT-S6310]Brush Silver Theme by @rekjezt
http://forum.xda-developers.com/showpost.php?p=52285522&postcount=770
[THEME][PORT][JB] Iron-Man for Galaxy Young GT-S6310 by @dugeriss
http://forum.xda-developers.com/showthread.php?t=2724963
Softy Theme II by @rekjezt
http://forum.xda-developers.com/showpost.php?p=51285961&postcount=673
[THEMES][GT-S6310] The Dark Knight by @andiogie
http://forum.xda-developers.com/showpost.php?p=51292018&postcount=675
[GUIDE]POWER DIALOG LOOK A LIKE CM
http://forum.xda-developers.com/showthread.php?t=2688305
HOW TO GET AOSP TASTE THEME FOR JELLYBEAN 4.1.2 TW ROM BASED WITHOUT MODIF ANY PNG OR LAYOUT AND WITHOUT ERROR APPEARS
http://forum.xda-developers.com/showthread.php?t=2685748
WOOD THEME FOR STOCKROM by @dugeriss
http://forum.xda-developers.com/showpost.php?p=50856941&postcount=529
Holy Stockmod DXAME1 by Catur Bowo Restyono
http://forum.xda-developers.com/showpost.php?p=50887648&postcount=547
[THEME][GT-S6310]Softy Theme by @rekjezt
http://forum.xda-developers.com/showpost.php?p=50962604&postcount=580
[MOD][PORT][GT-S6310] FB Style SystemUI for GALAXY YOUNG 2 GT-S6310 by @dugeriss
http://forum.xda-developers.com/showthread.php?t=2678045
ocoot said:
ok, let's to the point... because this device don't have a new sub forum on xda, I will gather all the rom, theme, mod, and others to be collected into one thread is here. it aims to facilitate the people to look for it and post the question here only and myself here also hope the moderator of this forum in order to provide a new subforum for this device :good:
Click to expand...
Click to collapse
Dude, the galaxy y (young) has an xda section Its not the exact model but its okay to post roms there, just put: [GT-6310] in the rom title. Hect, you might be able to flash the roms for other models, ask around
http://forum.xda-developers.com/galaxy-y
Hi.. uncle ocoot
nitif guide :laugh:
[GT-S6310][GUIDE] how to add lidroid 23toggles
http://forum.xda-developers.com/showthread.php?t=2551787
[GUIDE] [JB] GRID LIDROID [wanam source]
http://forum.xda-developers.com/showthread.php?t=2551959
[GUIDE] Moving signal icon to the left
http://forum.xda-developers.com/showpost.php?p=48714107&postcount=16
[GUIDE] To disable signature checks on system apps
http://forum.xda-developers.com/showpost.php?p=51517852&postcount=67
FIRMWARE Section
LATEST FIRMWARE UPDATE
For Galaxy Young GT-S6310
For Galaxy Young GT-S6310L
For Galaxy Young GT-S6310N
For Galaxy Young GT-S6310T
heading uncle !!
In CM:
I'm still working on it, still having some.issues. I'm taking "colaboration" with TheWhisp so I belive it will go faster.
Thanks for support guys,doing my best !
Djalo96 said:
In CM:
I'm still working on it, still having some.issues. I'm taking "colaboration" with TheWhisp so I belive it will go faster.
Thanks for support guys,doing my best !
Click to expand...
Click to collapse
is S6310 still use PMEM or already got ION ?
Sent from my umts_everest using Tapatalk
i'll be waiting good job @ocoot :good:
how did you move the signal icon to the left?
mjz2cool said:
how did you move the signal icon to the left?
Click to expand...
Click to collapse
Decompile SystemUI.apk
open "tw_status_bar"
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" />
<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: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">
[COLOR="Red"]<include [COLOR="Magenta"]android:id="@id/signal_cluster"[/COLOR] android:layout_width="wrap_content" android:layout_height="wrap_content" layout="@layout/tw_signal_cluster_view" />[/COLOR]
<TextView android:textSize="12.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>
<com.android.systemui.statusbar.policy.Clock android:textSize="@dimen/status_bar_clock_text_size" android:textColor="#ff959595" android:ellipsize="none" android:gravity="left|center" android:id="@id/clock" android:paddingLeft="3.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" android:includeFontPadding="false" />
</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>
</com.android.systemui.statusbar.phone.PhoneStatusBarView>
move line with id android:id="@id/signal_cluster" to bellow line with id "android:id="@id/left_icons"
like this :
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" [COLOR="Cyan"]android:id="@id/left_icons"[/COLOR] android:paddingLeft="4.0dip" android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_weight="1.0">
[COLOR="Red"]<include [COLOR="Magenta"]android:id="@id/signal_cluster"[/COLOR] android:layout_width="wrap_content" android:layout_height="wrap_content" layout="@layout/tw_signal_cluster_view" />[/COLOR]
<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" />
<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: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="12.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>
<com.android.systemui.statusbar.policy.Clock android:textSize="@dimen/status_bar_clock_text_size" android:textColor="#ff959595" android:ellipsize="none" android:gravity="left|center" android:id="@id/clock" android:paddingLeft="3.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" android:includeFontPadding="false" />
</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>
</com.android.systemui.statusbar.phone.PhoneStatusBarView>
next open "tw_signal_cluster_view"
Code:
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.SignalClusterView android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android">
[COLOR="Magenta"]<FrameLayout android:gravity="center" android:id="@id/wifi_combo" android:layout_width="wrap_content" android:layout_height="wrap_content">
<ImageView android:id="@id/wifi_signal" android:layout_width="wrap_content" android:layout_height="wrap_content" android:scaleType="center" android:layout_alignParentRight="true" android:layout_centerVertical="true" />
<ImageView android:layout_gravity="center" android:id="@id/wifi_inout" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</FrameLayout>[/COLOR]
<View android:id="@id/spacer" android:visibility="gone" android:layout_width="6.0dip" android:layout_height="6.0dip" />
<LinearLayout android:gravity="center" android:orientation="horizontal" android:id="@id/new_mobile_combo" android:layout_width="wrap_content" android:layout_height="wrap_content">
[COLOR="Lime"]<FrameLayout android:id="@id/separate_mobile" android:layout_width="wrap_content" android:layout_height="wrap_content">
<ImageView android:id="@id/separate_mobile_type" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:id="@id/separate_mobile_inout" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</FrameLayout>[/COLOR]
[COLOR="Red"]<FrameLayout android:layout_width="wrap_content" android:layout_height="wrap_content">
<FrameLayout android:gravity="center" android:id="@id/mobile_combo" android:layout_width="wrap_content" android:layout_height="wrap_content">
<ImageView android:id="@id/mobile_signal" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:id="@id/mobile_type" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:layout_gravity="bottom|right|center" android:id="@id/mobile_inout" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:id="@id/mobile_roaming" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</FrameLayout>
</FrameLayout>[/COLOR]
</LinearLayout>
<ImageView android:id="@id/airplane" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</com.android.systemui.statusbar.SignalClusterView>
change to:
Code:
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.SignalClusterView android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout android:gravity="center" android:orientation="horizontal" android:id="@id/new_mobile_combo" android:layout_width="wrap_content" android:layout_height="wrap_content">
[COLOR="Red"]<FrameLayout android:layout_width="wrap_content" android:layout_height="wrap_content">
<FrameLayout android:gravity="center" android:id="@id/mobile_combo" android:layout_width="wrap_content" android:layout_height="wrap_content">
<ImageView android:id="@id/mobile_signal" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:id="@id/mobile_type" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:layout_gravity="bottom|right|center" android:id="@id/mobile_inout" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:id="@id/mobile_roaming" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</FrameLayout>
</FrameLayout>[/COLOR]
[COLOR="Lime"]<FrameLayout android:id="@id/separate_mobile" android:layout_width="wrap_content" android:layout_height="wrap_content">
<ImageView android:id="@id/separate_mobile_type" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:id="@id/separate_mobile_inout" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</FrameLayout>[/COLOR]
</LinearLayout>
<View android:id="@id/spacer" android:visibility="gone" android:layout_width="6.0dip" android:layout_height="6.0dip" />
[COLOR="Magenta"]<FrameLayout android:gravity="center" android:id="@id/wifi_combo" android:layout_width="wrap_content" android:layout_height="wrap_content">
<ImageView android:id="@id/wifi_signal" android:layout_width="wrap_content" android:layout_height="wrap_content" android:scaleType="center" android:layout_alignParentRight="true" android:layout_centerVertical="true" />
<ImageView android:layout_gravity="center" android:id="@id/wifi_inout" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</FrameLayout>[/COLOR]
<ImageView android:id="@id/airplane" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</com.android.systemui.statusbar.SignalClusterView>
Save,recompile,sign, n push to System
Done!! :victory:
up
nobody answer my question? nobody interest on CM/AOSP based?
Did anyone manage to build custom kernel yet?
in >4.2 dev must choose to use ION or PMEM (or hybrid), it will breakdown what are working or not working features, like jena/jenad the devs decided to follow the ION route, so camera is broken and probably never be fixed (hard).
Sent from my umts_everest using Tapatalk
AshRoller said:
nobody answer my question? nobody interest on CM/AOSP based?
Did anyone manage to build custom kernel yet?
in >4.2 dev must choose to use ION or PMEM (or hybrid), it will breakdown what are working or not working features, like jena/jenad the devs decided to follow the ION route, so camera is broken and probably never be fixed (hard).
Sent from my umts_everest using Tapatalk
Click to expand...
Click to collapse
i du no om, wait respond from mastah
Djalo96 said:
In CM:
I'm still working on it, still having some.issues. I'm taking "colaboration" with TheWhisp so I belive it will go faster.
Thanks for support guys,doing my best !
Click to expand...
Click to collapse
wow i think you and thewhisp have a individual project to make CM for this device but it turns out you made ​​this CM project together. I hope it will be completed faster good job bro, i'll always support you :good:

[Q] [Request] bottom toggles and brightness slider in notification

Hello,
On my s2 there was a great mod that allowed to have the control buttons at the bottom of the notificationscreen. As the opo is such a huge device it would be easier to acces. Can somebody explain how to do it, bc aosp differs a lot from stocksamsung?...
kondroid said:
Hello,
On my s2 there was a great mod that allowed to have the control buttons at the buttom of the notificationscreen. As the opo is such a huge device it would be easier to acces. Can somebody explain how to do it, bc aosp differs a lot from stocksamsung?...
Click to expand...
Click to collapse
this is already present on custom roms.
Cool...i never ran into it, i tried cm11, slim, Mahdi, temasek, Heisenberg, aicp, aokp on my opo, but never noticed it. What rom are you talking about?
Still i haven't found a opo-rom, which supports it.
again: asking for help
i stil haven't found a rom on opo that has got this option.
searching google and xda i always ended in threads of samsung devices. they all say that you have to decompile systemUI and edit some lines in the StatusBarExpanded Xml.
So far, so ugly. i looked at this xml, but i don't know what line is what for.
does somebody know what has to be edited or point me at least to a rom for opo so i could compare??
thx for looking
Text from status_bar_expanded.xml out of SystemUI.apk (Mahdi sabermod)
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.phone.NotificationPanelView android:id="@id/notification_panel" android:background="@drawable/notification_panel_bg" androidaddingTop="@dimen/notification_panel_padding_top" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_marginStart="@dimen/notification_panel_margin_left"
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_wallpaper" android:layout_width="fill_parent" android:layout_height="fill_parent" android:scaleType="centerCrop" />
<View android:id="@id/handle" android:background="@drawable/status_bar_close" android:visibility="invisible" android:layout_width="fill_parent" android:layout_height="@dimen/close_handle_height" />
<include android:layout_gravity="bottom" android:layout_width="fill_parent" android:layout_height="@dimen/carrier_label_height" android:layout_marginBottom="@dimen/close_handle_height" layout="@layout/carrier_label" />
<LinearLayout androidrientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginBottom="@dimen/close_handle_underlap" android:animateLayoutChanges="false">
<include android:layout_width="fill_parent" android:layout_height="@dimen/notification_panel_header_height" layout="@layout/status_bar_expanded_header" />
<include android:layout_width="fill_parent" android:layout_height="32.0dip" layout="@layout/notification_reminder" />
<ViewStub android:id="@id/ribbon_settings_stub" android:layout="@layout/ribbon_settings" android:layout_width="fill_parent" android:layout_height="@dimen/qs_ribbon_height_big" />
<ViewStub android:id="@id/notification_brightness_slider" android:layout="@layout/quick_settings_brightness_dialog" android:layout_width="fill_parent" android:layout_height="@dimen/notification_row_min_height" />
<TextView android:textAppearance="@style/TextAppearance.StatusBar.Expanded.Network.EmergencyOnly" android:gravity="center" android:id="@id/emergency_calls_only" androidadding="4.0dip" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="wrap_content" />
<FrameLayout android:layout_width="fill_parent" android:layout_height="wrap_content">
<ViewStub android:id="@id/flip_settings_stub" android:layout="@layout/flip_settings" android:layout_width="fill_parent" android:layout_height="wrap_content" />
<ScrollView android:id="@id/scroll" android:fadingEdge="none" android:layout_width="fill_parent" android:layout_height="wrap_content" androidverScrollMode="ifContentScrolls">
<com.android.systemui.statusbar.policy.NotificationRowLayout android:id="@id/latestItems" android:layout_width="fill_parent" android:layout_height="wrap_content" systemui:rowHeight="@dimen/notification_row_min_height" />
</ScrollView>
</FrameLayout>
</LinearLayout>
<HorizontalScrollView android:layout_gravity="bottom" android:id="@id/custom_notification_scrollview" android:visibility="invisible" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginBottom="@dimen/notification_shortcuts_close_handle_height" android:fillViewport="true" android:layout_above="@id/handle" androidverScrollMode="never" android:requiresFadingEdge="none">
<com.android.systemui.statusbar.phone.ShortcutsWidget androidrientation="horizontal" android:id="@id/custom_notificiation_shortcuts" android:layout_width="fill_parent" android:layout_height="fill_parent" />
</HorizontalScrollView>
</com.android.systemui.statusbar.phone.NotificationPanelView>

[GUIDE][MOD][2.3+] Freaky Scrolling Tabs || initial release

FREAKY SCROLLING TABS​
Q - What? Wait wait once again Tab SystemUI!!
Ans - Yes, But created from scratch and easy to implement
I used PineappleTabs , FallingTabs but i wanted to implement something diff from them so i got the idea about freaky scrolling tabs. whats inside? okay see below​
Features :-
10Tabs
Horizontal Scrolling
No Smali Editing
So, No need to discuss about this thing any further lets try to implement. But remember u should know how to implement pineapple tabs because i will not cover which xmls u need to open and edit and i'm not going to tell u guyz how to deal with xml coding & Error in cmd promt​
Features :-
Apktool
Xml Skill
Knowledge of Dc/Rc
Brain.jar
STEP 1:-
- Decompile SystemUI.apk
- Download Smali files from attachment and extract it inside smali folder
STEP 2:-
- Open Expanded Header xml
- Open Expanded Xml
- Copy this line & paste it inside Header xml (Same as pineappleOwl's guide)
Code:
freaky.argha.scroll.A_R_G_H_A
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
-Now Copy below line and paste it inside expanded xml
Code:
<freaky.argha.scroll.D_A_S
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/view2"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" >
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textSize="50dp"
android:textColor="#ffffff"
android:text="Layout One"/>
</ScrollView>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="Layout Two"/>
</ScrollView>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="LAyout3"/>
</ScrollView>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="LAyout4"/>
</ScrollView>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="LAyout5"/>
</ScrollView>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="LAyout6"/>
</ScrollView>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="LAyout7"/>
</ScrollView>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="LAyout8"/>
</ScrollView>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="LAyout9"/>
</ScrollView>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="LAyout10"/>
</ScrollView>
</freaky.argha.scroll.D_A_S>
STEP 3:-
-Recompile SystemUI
-Sign
-Push
-Reboot
-Enjoy
Contributors :-
ARGHA_DAS & Freaky Developers
Credits:-
StackOverFlow
FreakyDevelopers
PineappleOwl for TabSystemUI idea
Wow!... finally a mod that doesn't require smali editing...
Great work bro.
Sent from my GALAXY Core Prime VE (G361H)..
Mr said:
Wow!... finally a mod that doesn't require smali editing...
Great work bro.
Sent from my GALAXY Core Prime VE (G361H)..
Click to expand...
Click to collapse
Hehe
Cool guide
Sent from my MotoG3 using Tapatalk
FireLord said:
Cool guide
Sent from my MotoG3 using Tapatalk
Click to expand...
Click to collapse
Thanks
No One Tested? ???

Categories

Resources