[Q] Modding bools.xml - Xperia Arc General

In my research for enabling the CRT off-animation, i found this, bools.xml
(more on CRT animation here: http://forum.xda-developers.com/showthread.php?t=1057556&page=3)
<?xml version="1.0" encoding="UTF-8"?>
<resources>
<bool name="alphabet_isRtl">false</bool>
<bool name="config_sf_limitedAlpha">false</bool>
<bool name="config_sf_slowBlur">false</bool>
<bool name="config_externalStorageRemovable">true</bool>
<bool name="config_tether_dun_required">false</bool>
<bool name="config_bypass_keyguard_if_slider_open">true</bool>
<bool name="config_automatic_brightness_available">false</bool>
<bool name="config_annoy_dianne">true</bool>
<bool name="config_unplugTurnsOnScreen">false</bool>
<bool name="config_animateScreenLights">true</bool>
<bool name="config_deskDockEnablesAccelerometer">false</bool>
<bool name="config_carDockEnablesAccelerometer">true</bool>
<bool name="config_batterySdCardAccessibility">false</bool>
<bool name="config_use_strict_phone_number_comparation">false</bool>
<bool name="config_disableMenuKeyInLockScreen">true</bool>
<bool name="config_useVanillaLockscreen">false</bool>
<bool name="config_swipeDisambiguation">true</bool>
<bool name="config_filterTouchEvents">false</bool>
<bool name="config_filterJumpyTouchEvents">false</bool>
<bool name="config_bluetooth_sco_off_call">true</bool>
<bool name="config_sip_wifi_only">false</bool>
<bool name="skip_restoring_network_selection">true</bool>
<bool name="config_suppress_usb_msc_notifications">true</bool>
<bool name="config_syncstorageengine_masterSyncAutomatically">false</bool>
<bool name="lockscreen_isPortrait">true</bool>
</resources>
This file makes my curious:
<bool name="config_automatic_brightness_available">false</bool>
Can this enable the option to disable automatic brightness (which is a pain)?
I searched, but found no answer and since the decompile/compile doesn't work for me, I can't try it either.

Stor-Anders said:
This file makes my curious:
<bool name="config_automatic_brightness_available">false</bool>
Can this enable the option to disable automatic brightness (which is a pain)?
Click to expand...
Click to collapse
I've tried. I changed this setting to true, compiled framework-res.apk and sent back it to the phone.
Yes, the menu brightness appeared checkbox "Automatically adjust brightness", but it doesn't work. With the option turned on or off the brightness is still adjusted automatically. As before.
So I can conclude: this trick does not work.

Ok, thanks for your effort!

Q
Hello
I want decompile Framework-res.apk with APK Manager (Option 10)
it need Dependee Apk , What is this ?
can i use ''SemcGenericUxpRes.apk'' in Framework folder or not ?
if not , please help me .
Thanks a lot

uhm.. i did a decompile with decompile/recompile tool & it didn't need any other apk
recompilation went smooth

Try to set "config_animateScreenLights" from true to false.

Related

[Q] Menu Icons with different themes

Hello,
in the settings of my App the users can switch between Holo.Light and Holo theme.
But I show some Menu options in the ActionBar. I've copied the icons for Holo.Light into my App.
When I switch to Holo theme, the icons looks not really good.
How can I implement the icons for the dark theme?
I've tried the following: http://stackoverflow.com/a/12339924
But it dont work..
values/attrs.xml:
Code:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="main">
<attr name="search_icon" format="reference" />
</declare-styleable>
</resources>
values/styles.xml:
Code:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyTheme" parent="android:Theme.Holo">
<item name="search_icon" [user=3944923]@drawab[/user]le/ic_action_search</item>
</style>
<style name="MyTheme.Light" parent="android:Theme.Holo.Light">
<item name="search_icon" [user=3944923]@drawab[/user]le/ic_action_search_light</item>
</style>
</resources>
menu/main.xml
Code:
<item
android:id="@+id/action_search"
android:icon="?search_icon"
.....
manifest:
Code:
<application
android:theme="@style/MyTheme"
wheres the error? it does always show the @drawable/ic_action_search_light icon..

[TUT][4.1+] How to transform your framework into Honami framework!

Hi, its my first tut on XDA Forum
I would like to share with you my knowledge.
To decompile, sign and recompile files I using Advance ApkTool​
1. Theme accent color in dialog, pop up, settings, text highlight etc..
Screens:
{
"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"
}
Tutorial:
Its very easy mod!
1. Recompile your framework-res.apk
2. Go to /res/values/ and open color.xml
3. Find <color name="holo_blue_light">..</color> and replace value with @com.sonyericsson.uxp:color/semc_theme_accent_color
shoud look like this:
4. Now find:
Code:
<color name="highlighted_text_dark">
<color name="highlighted_text_light">
<color name="highlighted_text_holo_dark">
<color name="highlighted_text_holo_light">
and replace color value with @com.sonyericsson.uxp:color/semc_theme_accent_color
5. Now go to apktool.yml and add this line under isFrameworkApk: true
Code:
usesFramework:
ids:
- 2
6. Now recompile, sign and push into /system/framework !
2. Theme accent color in Progress bar
Screens:
Tutorial:
1. Recompile your framework-res
2. Download this files proggres.rar and paste to /res/drawable & /drawable-hdpi
3. Now go to styles.xml and find this line:
Code:
<item name="progressDrawable">@drawable/progress_horizontal_holo_light</item>
replace it with
Code:
<item name="progressDrawable">@drawable/semc_progress_horizontal_holo_light</item>
now find this line:
Code:
<item name="progressDrawable">@drawable/progress_horizontal_holo_dark</item>
and replace it with
Code:
<item name="progressDrawable">@drawable/semc_progress_horizontal_holo_dark</item>
4. Recompile, sign and push in /system/framework!
3. Cool list separator accorind theme color!
Screens:
Tutorial:
1. Recompile your framework-res
2. Create new list_separator_background.xml file in /res/drawable
Code:
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@com.sonyericsson.uxp:color/semc_theme_accent_color" />
<corners android:topRightRadius="8.0px" android:bottomRightRadius="8.0px" />
<padding android:left="4.0dip" android:top="2.0dip" android:right="4.0dip" android:bottom="2.0dip" />
</shape>
3. Now go to styles.xml and find this
Code:
@drawable/dark_header_dither
and replace it with this:
Code:
@drawable/list_separator_background
find this:
Code:
@drawable/light_header_dither
and replace it with this:
Code:
@drawable/list_separator_background
find this style
Code:
<style name="Widget.Holo.TextView.ListSeparator" parent="@style/Widget.TextView.ListSeparator">
under this style find this
Code:
<item name="background">
and replace it with
Code:
@drawable/list_separator_background
like this:
do the same with this style
Code:
<style name="Widget.Holo.Light.TextView.ListSeparator" parent="@style/Widget.TextView.ListSeparator">
4. Recompile, sign and push to /framework
4. Text fields according theme color and search box
Screens:
Tutorial:
1. Decompile your framework-res
2. Download this files Text fields and paste it
3. Open styles.xml and find this style:
a)
Code:
<style name="Theme.Holo.Light" parent="@style/Theme.Light">
under this style find
Code:
<item name="editTextColor
and
Code:
<item name="editTextBackground">
Replace it to look like this:
Code:
<item name="editTextColor">@color/semc_edittext_color_dark</item>
<item name="editTextBackground">@drawable/semc_edit_text_holo_light</item>
b)
Now, under this style:
Code:
<style name="Theme.Holo" parent="@style/Theme">
find this:
Code:
<item name="editTextColor
Code:
<item name="editTextBackground">
and edit to look like this:
Code:
<item name="editTextColor">@color/semc_edittext_color_dark</item>
<item name="editTextBackground">@drawable/semc_edit_text_holo_dark</item>
4. Now find this line
Code:
<item name="searchViewTextField">
and edit to look like this:
in Theme.Holo
Code:
<item name="searchViewTextField">@drawable/semc_textfield_searchview_holo_dark</item>
in Theme.Holo.Light
Code:
<item name="searchViewTextField">@drawable/semc_textfield_searchview_holo_dark</item>
5. Save, recompile, sign and push to framework!
5. How to port switchers accorind theme color
Screens:
Tutorial:
1. Decompile your framework-res
2. Download switch.rar (see attachment) and paste it
3. Now go to /res/values/strings.xml and add this string to end of the file
Code:
<string name="capital_on_blind" />
<string name="capital_off_blind" />
save & exit
4.1 Open styles.xml and find this style:
Code:
<style name="Widget.Holo.Light.CompoundButton.Switch" parent="@style/Widget.CompoundButton.Switch">
edit this style to look like this:
Code:
<style name="Widget.Holo.Light.CompoundButton.Switch" parent="@style/Widget.CompoundButton.Switch">
<item name="textOn">@string/capital_on_blind</item>
<item name="textOff">@string/capital_off_blind</item>
<item name="thumb">@drawable/switch_inner_holo_light</item>
<item name="switchTextAppearance">@style/TextAppearance.Holo.Widget.Switch</item>
<item name="track">@drawable/switch_track_holo_light</item>
<item name="switchMinWidth">70.0dip</item>
<item name="switchPadding">8.0dip</item>
<item name="thumbTextPadding">12.0dip</item>
</style>
4.2 Now find this style
Code:
<style name="Widget.Holo.CompoundButton.Switch" parent="@style/Widget.Holo.CompoundButton">
end edit to look like this:
Code:
<style name="Widget.Holo.CompoundButton.Switch" parent="@style/Widget.Holo.CompoundButton">
<item name="textOn">@string/capital_on_blind</item>
<item name="textOff">@string/capital_off_blind</item>
<item name="thumb">@drawable/switch_inner_holo_dark</item>
<item name="switchTextAppearance">@style/TextAppearance.Holo.Widget.Switch</item>
<item name="track">@drawable/switch_track_holo_light</item>
<item name="switchMinWidth">70.0dip</item>
<item name="switchPadding">8.0dip</item>
<item name="thumbTextPadding">12.0dip</item>
</style>
5. Save, recompile, sign and push to framework!
Its my first tutorial,
Hit thanks If you like it!
To do:
•How to port search box and text fields according theme color, Added
•How to port switchers accorind theme color, Added
•How to port btn_toggle, day &number picker according theme color
• and more...
one more
How to change colors of bubbles (Received and Sent) is SMS message? Thanks...
Congrats!!
Really useful and well written!!
top work bro.
so usfull
.
Nice work Bro
serajr said:
Really useful and well written!!
Click to expand...
Click to collapse
alinolaw71 said:
top work bro.
so usfull
.
Click to expand...
Click to collapse
Ambor said:
Nice work Bro
Click to expand...
Click to collapse
Thank you guys!!
/Added tutorial how to port search box and text fields according theme color!
if I add id 2
than bootloop I tried this method previous also but ends with bootloop @serajr m using ur framework
xperia l 4.2
yash989 said:
if I add id 2
than bootloop I tried this method previous also but ends with bootloop @serajr m using ur framework
xperia l 4.2
Click to expand...
Click to collapse
Your framework support colorizable function? Here is tut how to port if yes try to sign framework-res.apk
KuaQ said:
Your framework support colorizable function? Here is tut how to port if yes try to sign framework-res.apk
Click to expand...
Click to collapse
yes it supports
before it shows framework icon
but after compile it shows only robot icon
yash989 said:
if I add id 2
than bootloop I tried this method previous also but ends with bootloop @serajr m using ur framework
xperia l 4.2
Click to expand...
Click to collapse
I have no framework released!!
yash989 said:
yes it supports
before it shows framework icon
but after compile it shows only robot icon
Click to expand...
Click to collapse
maybe try to use another apktool version
serajr said:
I have no framework released!!
Click to expand...
Click to collapse
i mean cnt roms framework
You made the Portal News! http://www.xda-developers.com/android/honami-ui-guide/
Nice work! :highfive:
Good work @KuaQ ! Very good !:good:
Awesome guide
I use LG P713 (4.1.2) is it work for me?
It did not work with me
More'll try again :good:
Good !
Well Done ! @KuaQ
Tutorial is written clearly and everything is understandable.
That is AWESOME!!!!!!!!!!!!:victory:

[SHARE][TUTORIAL][HOWTO]disabling/Enabling option for system APP

hi,
in different customization of the same device for region or operator , we find some option in system configuration enabled in some and other no then we can do it by changing variable value in application files in system by decompiling and recompiling after modifying ( bools or arrays...etc ) it take a lot of time
so customization Sony has choose to make a little files for a region customization or enabling or disabling option in system app without modifying the original app file by using {real_application_name}-res.apk what will be adding in /system/vendor/overlay
in 4.0.4 and before sony ericsson used /system/etc/customization/ folder for enabling and parameterizing apps, so in JB 4.2 and 4.3or 4.4 these files are incompatible only 4.3 and 4.4 are compatible (attached files)
for JB 4.2
4.3 and 4.4
How to use ??
example :
for enabling data traffic notification and status icon in status bar we must change in or semcphone.apk phone.apk this line after decompiling Phone.apk or SemcPhone.apk in res/value/bools/xml we find a default value of application :
Code:
<bool name="data_connection_except_mms_can_clear_icon">true</bool>
<bool name="data_connection_except_mms_show_icon_when_disabled">true</bool>
<bool name="data_connection_except_mms_show_icon_when_enabled">false</bool>
Click to expand...
Click to collapse
they must be change to :
Code:
<bool name="data_connection_except_mms_can_clear_icon">false</bool> ----->[COLOR="red"] icon always visible can't be removed[/COLOR]
<bool name="data_connection_except_mms_show_icon_when_disabled">true</bool>
<bool name="data_connection_except_mms_show_icon_when_enabled">true</bool>
Click to expand...
Click to collapse
then it can be inserted in com.phone-res.apk and injected in system/vendor/overlay and rebooting after that the options are activated.
just know what value to want be activated in the main application apk
Another exemple :
in this post http://forum.xda-developers.com/showthread.php?t=2703113 to have mod for activating low cost in conversations.apk but with decompiling main apk conversations.apk but the simple one is using -res.apk
default value are :
Code:
<bool name="character_conversion">false</bool>
<bool name="character_conversion_visibility">false</bool>
Click to expand...
Click to collapse
and must be changed to
Code:
<bool name="character_conversion">true</bool>
<bool name="character_conversion_visibility">true</bool>
Click to expand...
Click to collapse
then modifing com.sonyericsson.conversations-res.apk
after decomiling
we have
Code:
[CODE]
[/CODE]
res
|-------> bools.xml -------------> to be modified
|-------> public.xml ---------------important contains all variable defined
bools.xml
Code:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="three_digit_number_linkify">true</bool>
<bool name="delivery_report">true</bool>
<bool name="mms_retrieval_during_roaming_visibility">true</bool>
[COLOR="Red"]<bool name="character_conversion">true</bool>
<bool name="character_conversion_visibility">true</bool>[/COLOR]
</resources>
public.xml
Code:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<public type="bool" name="three_digit_number_linkify" id="0x7f020000" />
<public type="bool" name="delivery_report" id="0x7f020001" />
<public type="bool" name="mms_retrieval_during_roaming_visibility" id="0x7f020002" />
[COLOR="red"]<public type="bool" name="character_conversion" id="0x7f020003" />
<public type="bool" name="character_conversion_visibility" id="0x7f020004" />[/COLOR]
<public type="bool" name="enable_send_empty_message" id="0x7f020005" />
<public type="integer" name="max_recipients" id="0x7f030000" />
<public type="integer" name="mms_max_size" id="0x7f030001" />
<public type="integer" name="sms_max_segments" id="0x7f030002" />
<public type="integer" name="mms_trigger_sms_segments" id="0x7f030003" />
</resources>
and recompile , push it in system/vendor/overlay and done.

[TUTORIAL][KK]JB style quick settings for KitKat

Inspired by AndroPlus's True Quick Settings, in this thread, I'll show you how to mod your KitKat SystemUI to get JellyBean style Quick Settings.
Files you need to edit
Code:
res/layout/somc_quick_settings_tab.xml
res/layout/somc_notifications_tab.xml
res/layout/somc_tabs_status_bar_expanded.xml
res/layout/status_bar_notification_tools_button.xml
res/values/dimens.xml
res/values/integers.xml
Requirements:
- ApkTool (I use this)
- Notepad++
- Patience
1. Decompile your SystemUI.apk
2. We must move the quick settings tab to notifications tab. So, go to somc_quick_settings_tab.xml and copy the Linear layout
Code:
<LinearLayout android:orientation="vertical" android:id="@id/tools_rows" android:layout_width="fill_parent" android:layout_height="wrap_content" />
3. Next edit the somc_notifications_tab.xml and add the above code and now it looks something like this
Code:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:orientation="vertical" android:id="@id/notifications_tab" android:layout_width="fill_parent" android:layout_height="wrap_content" android:animateLayoutChanges="false"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui">
[COLOR="Red"]<LinearLayout android:orientation="vertical" android:id="@id/tools_rows" android:layout_width="fill_parent" android:layout_height="wrap_content" />[/COLOR]
4. To add the divider line which divides the quick settings and the time, copy this and paste it in somc_notifications_tab.xml below the Linear layout we copied earlier
Code:
<View android:background="@drawable/status_bar_hr" android:layout_width="fill_parent" android:layout_height="@dimen/notification_panel_header_divider_height" />
It looks like this
Code:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:orientation="vertical" android:id="@id/notifications_tab" android:layout_width="fill_parent" android:layout_height="wrap_content" android:animateLayoutChanges="false"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui">
<LinearLayout android:orientation="vertical" android:id="@id/tools_rows" android:layout_width="fill_parent" android:layout_height="wrap_content" />
[COLOR="Red"]<View android:background="@drawable/status_bar_hr" android:layout_width="fill_parent" android:layout_height="@dimen/notification_panel_header_divider_height" />[/COLOR]
5. Now to move the clock below the quick settings, go to somc_tabs_status_bar_expanded.xml and cut this line
Code:
<include layout="@layout/status_bar_expanded_header" />
Paste it to somc_notifications_tab.xml below the divider line code. Like this
Code:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:orientation="vertical" android:id="@id/notifications_tab" android:layout_width="fill_parent" android:layout_height="wrap_content" android:animateLayoutChanges="false"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui">
<LinearLayout android:orientation="vertical" android:id="@id/tools_rows" android:layout_width="fill_parent" android:layout_height="wrap_content" />
<View android:background="@drawable/status_bar_hr" android:layout_width="fill_parent" android:layout_height="@dimen/notification_panel_header_divider_height" />
[COLOR="Red"]<include layout="@layout/status_bar_expanded_header" />[/COLOR]
<include layout="@layout/status_bar_expanded_stylus_actions" />
<ScrollView android:id="@id/scroll" android:fadingEdge="none" android:layout_width="fill_parent" android:layout_height="wrap_content" android:overScrollMode="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>
</LinearLayout>
6. Make another copy of somc_notifications_tab.xml and rename it to somc_quick_settings_tab.xml and replace it with the original somc_quick_settings_tab.xml. So that both these files are the same.
7. To remove the top tabs [Notifications Quick settings], edit somc_tabs_status_bar_expanded.xml. Change this
Code:
<com.sonymobile.systemui.statusbar.tools.ToolsTabWidget android:orientation="horizontal" android:id="@android:id/tabs" android:layout_width="fill_parent" android:layout_height="wrap_content" />
to
Code:
<com.sonymobile.systemui.statusbar.tools.ToolsTabWidget android:orientation="horizontal" android:id="@android:id/tabs" android:layout_width="fill_parent" android:layout_height="[COLOR="Red"]0.0dip[/COLOR]" />
Also delete this line from somc_tabs_status_bar_expanded.xml
Code:
<include layout="@layout/somc_quick_settings_tab" />
8. To remove top space above quick settings icons, change these lines in status_bar_notification_tools_button.xml.
From
Code:
<FrameLayout android:layout_width="wrap_content" android:layout_height="wrap_content">
to
Code:
<FrameLayout [COLOR="Red"]android:layout_marginTop="@dimen/qs_tile_margin_above_icon"[/COLOR] android:layout_width="wrap_content" android:layout_height="wrap_content">
For single line text, change this
Code:
<TextView android:textSize="@dimen/status_bar_tools_button_label_text_size" android:gravity="top|center" android:id="@id/tools_button_text" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginBottom="@dimen/status_bar_tools_button_margin_bottom" android:lines="2" android:scrollHorizontally="false" android:includeFontPadding="false" />
to
Code:
<TextView [COLOR="Red"]android:layout_marginBottom="@dimen/qs_tile_margin_below_icon"[/COLOR] android:textSize="@dimen/status_bar_tools_button_label_text_size" android:gravity="top|center" android:id="@id/tools_button_text" android:layout_width="fill_parent" android:layout_height="fill_parent" android:lines="[COLOR="Red"]1[/COLOR]" android:scrollHorizontally="false" android:includeFontPadding="[COLOR="Red"]true[/COLOR]" [COLOR="Red"]android:singleLine="true"[/COLOR]/>
9. Edit dimens.xml.
From
Code:
<dimen name="notification_panel_tools_row_height">100.0dip</dimen>
<dimen name="status_bar_tools_button_label_text_size">12.0dip</dimen>
<dimen name="qs_tile_margin_above_icon">27.0dip</dimen>
<dimen name="qs_tile_margin_below_icon">17.0dip</dimen>
to
Code:
<dimen name="notification_panel_tools_row_height">[COLOR="Red"]57.0dip[/COLOR]</dimen>
<dimen name="status_bar_tools_button_label_text_size">[COLOR="Red"]10.0dip[/COLOR]</dimen>
<dimen name="qs_tile_margin_above_icon">[COLOR="Red"]-22.0dip[/COLOR]</dimen>
<dimen name="qs_tile_margin_below_icon">[COLOR="Red"]-12.0dip[/COLOR]</dimen>
10. Edit integers.xml
From
Code:
<integer name="config_maxToolItemsInARow">4</integer>
<integer name="config_maxToolItemsInGrid">16</integer>
to
Code:
<integer name="config_maxToolItemsInARow">[COLOR="Red"]5[/COLOR]</integer>
<integer name="config_maxToolItemsInGrid">[COLOR="Red"]15[/COLOR]</integer>
11. Recompile and Enjoy
About the top space above quick settings icons, niaboc79 said it was his code, hence I had removed that. Also it had some bugs (for me at least) that I could not edit the SystemUI again. Even if I did, it would force close. And I have changed it so that when you decompile SystemUI again, mod it, and recompile, it can be used without any force close.
So what's the difference between niaboc79's JB style SystemUI and my tutorial?
-With my tutorial, you can use "Clear" button if you swipe the statusbar with one finger, and you can use "Edit" button for editing quick settings if you swipe the statusbar with two fingers. And he uses other file (com.android.settings-res.apk) to achieve this JB style SystemUI.
And why this comparison?
-Because he asked me to close the thread saying I used his methods. So I deleted his method and changed it with my own.
This mod has been tested on Xperia Z and Xperia ZL KitKat firmwares. Should work on other Sony KitKat devices (I doubt if it works on Z3 and new Z2 firmware). Test and report.
Always take a backup of original files so that you can replace it when something goes wrong
Credits:
AndroPlus
anagramgenius(myself )
XDA Portal
http://www.xda-developers.com/bring-back-jelly-bean-quick-toggles-to-your-kitkat-xperia-rom/
Thanks my friend.. Great work..
Cool Bro! But you know how to move the clock above the toggles?
Naufal Sidik said:
Cool Bro! But you know how to move the clock above the toggles?
Click to expand...
Click to collapse
In step 5, copy the code and place it above the linear layout of somc notification tab and somc quicksettings tab.
Good tutorial! Thanks!
Trimis de pe al meu D2303 folosind Tapatalk
i have a few questions:
1. does it work for Z1c?
2. can anybody tell me how to center clock in statusbar?
thx
m.
moonryder said:
i have a few questions:
1. does it work for Z1c?
2. can anybody tell me how to center clock in statusbar?
thx
m.
Click to expand...
Click to collapse
Haven't tested. It might work.
moonryder said:
i have a few questions:
1. does it work for Z1c?
2. can anybody tell me how to center clock in statusbar?
thx
m.
Click to expand...
Click to collapse
It will work all Kitkat 4.4+ Sony Devices without any problems..
Thanks for this! How did you get that really awesome-looking blur on the notification panel?
epic118 said:
Thanks for this! How did you get that really awesome-looking blur on the notification panel?
Click to expand...
Click to collapse
Its an xposed module. Blurred SystemUI by serajr.
Congrats for the XDA Portal
http://www.xda-developers.com/android/bring-back-jelly-bean-quick-toggles-to-your-kitkat-xperia-rom/
Rajeev said:
Congrats for the XDA Portal
http://www.xda-developers.com/android/bring-back-jelly-bean-quick-toggles-to-your-kitkat-xperia-rom/
Click to expand...
Click to collapse
Thanks:victory:
thanks so much sir.....!!! :good: :good: :good: working on t2 ultra 4.4.3
hazikh said:
thanks so much sir.....!!! :good: :good: :good: working on t2 ultra 4.4.3
Click to expand...
Click to collapse
Thanks for confirmation:good:
May I ask how you have the "USB Storage Connected - Tap here to safely remove " prompt , I would like to have it on my Sony Xperia M Dual to quickly unmount the usb device I connect.
sorry to ask, how to replace colors on a divider according to the theme ?
solonxpl said:
May I ask how you have the "USB Storage Connected - Tap here to safely remove " prompt , I would like to have it on my Sony Xperia M Dual to quickly unmount the usb device I connect.
Click to expand...
Click to collapse
If USB OTG function is present in your device, it appears. It was present in my device. I didn't mod anything to get that.
hazikh said:
sorry to ask, how to replace colors on a divider according to the theme ?
Click to expand...
Click to collapse
Dunno about that. Will find and tell you.
Hey i have edited the SystemUi.apk bt now i am not getting how to install that apk...when i install the apk it is not installed....
I had replaced the SystemUi.apk with edited one by es file explorer bt it didnt worked my status bar and navigation bar was gone after that....i had to flash my phone again to get in better position...help me!!

speed dial enable

All,
steps to enable speed dial on Sony Xperia Z1 compact
Speeddial is enabled on D5503_14.4.A.0.157_R4C_RU
But disabled on D5503_14.4.A.0.157_Baltic
After I have copied "com.sonyericsson.android.socialphonebook-res.apk" to system/vendor/overlay folder I got speeddial with 99 positions.
This apk file must have the following files:
\res\values\bools.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="enable_speed_dial">true</bool>
</resources>
and \res\values\public.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<public type="bool" name="enable_speed_dial" id="0x7f020000" />
</resources>

Categories

Resources