[Theme][no root/root] XPERIA™ Nature Cold - Sony Cross-Device Development Themes and Apps

Hello
guys, today I bring you an excellent theme I hope you like it and give me a thank you :good:
{
"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"
}
Theme will apply on
Keyboard Color
Lock Screen saver
Lock Screen clock
HD wallpaper
Clock widget
and support xperia x
background layouts color theme and few
Whatsapp color
Support for all xperia (LP,MM,N)
Screen shots
Downloads
On Google Play
Click here To download
Don't forget to thank me if you like/love my work
[/CENTER][/B]Follow me on Facebook
Click here To Facebook

Please can yhu make an update version of tha theme with menu nav bar themed.
Please.
Thanks man

?
whalesplaho said:
Please can yhu make an update version of tha theme with menu nav bar themed.
Please.
Thanks man
Click to expand...
Click to collapse
what bar bro??

Guetto Design said:
what bar bro??
Click to expand...
Click to collapse
Tha 3 dot nav bar.... Dahs tha menu nav bar!!

Please still waiting brov....

whalesplaho said:
Please still waiting brov....
Click to expand...
Click to collapse
I'm sorry I will not change anything, it's already published

Sorry
whalesplaho said:
Please still waiting brov....
Click to expand...
Click to collapse
I'm sorry I will not change anything, it's already published

Guetto Design said:
I'm sorry I will not change anything, it's already published
Click to expand...
Click to collapse
Its okay buddy.... Thanks!

whalesplaho said:
Its okay buddy.... Thanks!
Click to expand...
Click to collapse
Like this? I just copied png to systemui assets... @Guetto Design - you OK with that?

Yes bro
levone1 said:
Like this? I just copied png to systemui assets... @Guetto Design - you OK with that?
Click to expand...
Click to collapse
if there is no bro problem, did you receive the message I sent you?

Guetto Design said:
if there is no bro problem, did you receive the message I sent you?
Click to expand...
Click to collapse
Oh yeah, thanks for reminding me. It's a systemui apk, right? I'll check it out - I forgot about it...

Yes bro
levone1 said:
Oh yeah, thanks for reminding me. It's a systemui apk, right? I'll check it out - I forgot about it...
Click to expand...
Click to collapse
if bro, that may be the solution to add the battery icons in the new systemui

@levone1 thanks for tha edited mod.

whalesplaho said:
@levone1 thanks for tha edited mod.
Click to expand...
Click to collapse
You might like this - https://forum.xda-developers.com/crossdevice-dev/sony/customize-xperia-themes-computer-t3602560/amp/

Guetto Design said:
if bro, that may be the solution to add the battery icons in the new systemui
Click to expand...
Click to collapse
Good news / bad news:
I was able to port the Z2 battery widget from your system ui upload, but I'm not sure how to replace the current battery widget. So far I can only make it so they're both there. I tried deleting the old code in system_icons.xml, but it causes systemui fc. I think the proper way is probably a switch in smali, but I'm not strong enough in smali to figure it out. I think I can probably hack it in size and layout entries, so I'll mess around with that a bit...
Obviously in screenshot the size and layout is not right, but I can easily adjust that.
BTW - porting is simple. No smali coding necessary, just copying files. I didn't make note of all the specifics, but I will get to it...

Great
levone1 said:
Good news / bad news:
I was able to port the Z2 battery widget from your system ui upload, but I'm not sure how to replace the current battery widget. So far I can only make it so they're both there. I tried deleting the old code in system_icons.xml, but it causes systemui fc. I think the proper way is probably a switch in smali, but I'm not strong enough in smali to figure it out. I think I can probably hack it in size and layout entries, so I'll mess around with that a bit...
Obviously in screenshot the size and layout is not right, but I can easily adjust that.
BTW - porting is simple. No smali coding necessary, just copying files. I didn't make note of all the specifics, but I will get to it...
Click to expand...
Click to collapse
excellent bro, I hope you can have results soon

Guetto Design said:
excellent bro, I hope you can have results soon
Click to expand...
Click to collapse
I was able to hide the original icon, but new battery layout is wacky (screenshot). I think I'm also realizing that my systemUI is not good for testimony, because I have already hacked it up so much... Would be best to test on full stock SystemUI. Maybe I'll just post instructions, and others can test...

Guetto Design said:
excellent bro, I hope you can have results soon
Click to expand...
Click to collapse
Here's what I did if you want to try
-Decompile SystemUI apk and SystemUI1 apk
- Copy SystemUI1/smali/com/ztc1997 folder to SystemUI/smali/com
- Copy SystemUI1/res/layout/z2battery.xml to Systemui/res/layout
- Copy SystemUI1/res/drawable_xhdpi_v4/somc_sys_charging_am.png to SystemUI/res/drawable_xhdpi_v4
- Open SystemUI/res/values/bools.xml and add
Code:
<bool name="config_limited_usb_charging">false</bool>
- Open SystemUI/res/values/colors.xml and add
Code:
<color name="statusbar_battery_percent_color">#ffffffff</color>
- Open SystemUI/res/values/dimens.xml and add
Code:
<dimen name="status_bar_icon_margin">0.0dip</dimen>
<dimen name="battery_margin_start">0.0dip</dimen>
- Open SystemUI/res/values/ids.xml and add
Code:
<item type="id" name="battery_charging">false</item>
<item type="id" name="battery_icon">false</item>
<item type="id" name="battery_percent">false</item>
<item type="id" name="battery_stamina">false</item>
- Open SystemUI /res/layout/system_icons.xml and add this line
Code:
<com.ztc1997.widgets.Z2Battery android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_marginStart="@dimen/battery_margin_start" />
after '<com.android.systemui.BatteryMeterView android:id="@id/battery" android:background="#d9ffffff" android:layout_width="@dimen/status_bar_battery_icon_width" android:layout_height="@dimen/status_bar_battery_icon_height" android:layout_marginBottom="@dimen/battery_margin_bottom" />'
- Recompile, sign and push.
After that, it's a matter of adjusting values. For example, to hide the old battery icon and percentage, I changed values like 'battery icon height' in dimens.xml, and 'layout_width' in system_icons.xml to '0.0dip', and I would change things like 'paddingLeft', etc in the appropriate files to set the layout correctly. It will vary from device to device, so can't really spell it all out, especially since my systemUI files have already been modded heavily...
I probably won't mess with it anymore at this point, until I clean flash stock again. Maybe you can take it further...

Great
levone1 said:
Here's what I did if you want to try
-Decompile SystemUI apk and SystemUI1 apk
- Copy SystemUI1/smali/com/ztc1997 folder to SystemUI/smali/com
- Copy SystemUI1/res/layout/z2battery.xml to Systemui/res/layout
- Copy SystemUI1/res/drawable_xhdpi_v4/somc_sys_charging_am.png to SystemUI/res/drawable_xhdpi_v4
- Open SystemUI/res/values/bools.xml and add
Code:
<bool name="config_limited_usb_charging">false</bool>
- Open SystemUI/res/values/colors.xml and add
Code:
<color name="statusbar_battery_percent_color">#ffffffff</color>
- Open SystemUI/res/values/dimens.xml and add
Code:
<dimen name="status_bar_icon_margin">0.0dip</dimen>
<dimen name="battery_margin_start">0.0dip</dimen>
- Open SystemUI/res/values/ids.xml and add
Code:
<item type="id" name="battery_charging">false</item>
<item type="id" name="battery_icon">false</item>
<item type="id" name="battery_percent">false</item>
<item type="id" name="battery_stamina">false</item>
- Open SystemUI /res/layout/system_icons.xml and add this line
Code:
<com.ztc1997.widgets.Z2Battery android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_marginStart="@dimen/battery_margin_start" />
after '<com.android.systemui.BatteryMeterView android:id="@id/battery" android:background="#d9ffffff" android:layout_width="@dimen/status_bar_battery_icon_width" android:layout_height="@dimen/status_bar_battery_icon_height" android:layout_marginBottom="@dimen/battery_margin_bottom" />'
- Recompile, sign and push.
After that, it's a matter of adjusting values. For example, to hide the old battery icon and percentage, I changed values like 'battery icon height' in dimens.xml, and 'layout_width' in system_icons.xml to '0.0dip', and I would change things like 'paddingLeft', etc in the appropriate files to set the layout correctly. It will vary from device to device, so can't really spell it all out, especially since my systemUI files have already been modded heavily...
I probably won't mess with it anymore at this point, until I clean flash stock again. Maybe you can take it further...
Click to expand...
Click to collapse
it's amazing, you almost did it, possibly as you say with a clean rom you get better results. you were able to add the other battery icons??

Guetto Design said:
it's amazing, you almost did it, possibly as you say with a clean rom you get better results. you were able to add the other battery icons??
Click to expand...
Click to collapse
I don't know exactly what it's supposed to look like, since I haven't seen that systemui booted, (I just have the apk), but full port would probably require changing BatteryMeter and BatteryMeterDrawable files, which would involve a bit more work, (converting public id's etc..). I looked at it a little, but didn't get too far into it.
..

Related

Skin the Soft Buttons??

Anyone figure out how to change/skin the onscreen soft buttons yet?
I know there's a mod to add search button, so there must be a way?
Sent from my Galaxy Nexus
there is a mod to make them transparent for 4.0.1 and i THINK 4.0.2 but nothing done with 4.0.3 yet i dont think.
I'm about 90% positive you can just edit the framework-res.apk or its the system-ui.apk in the rom to edit the files to your liking, for instance I have ones that are text instead of images. However my Nexus is still in transit so I can't test!
sassyness77 said:
I'm about 90% positive you can just edit the framework-res.apk or its the system-ui.apk in the rom to edit the files to your liking, for instance I have ones that are text instead of images. However my Nexus is still in transit so I can't test!
Click to expand...
Click to collapse
You wanna upload it? I can test it out for you.
nxt said:
You wanna upload it? I can test it out for you.
Click to expand...
Click to collapse
check me on that list too im always down for helping where i can
Since it will be here tomorrow, i held off on beta testing, just incase something went hay-wire and screwed up another device. although its just a theme I didn't want to risk someones $700's! expect a full release this weekend.
But back on topic, yes it is easy to theme the soft touch buttons, feel free to PM me suggestions on what you want and I can see what I can do?
sassyness77 said:
Since it will be here tomorrow, i held off on beta testing, just incase something went hay-wire and screwed up another device. although its just a theme I didn't want to risk someones $700's! expect a full release this weekend.
But back on topic, yes it is easy to theme the soft touch buttons, feel free to PM me suggestions on what you want and I can see what I can do?
Click to expand...
Click to collapse
A full text one would be cool Back Home Recent
Maybe in the same font as the app "Minimalistic Text" widget. with the Home being bold and the others all lower case.
Softkey Editing is no problem
- Just open the /system/app/systemUI.apk on your PC with WinRAR (don't extract it!)
- Go to directory /res/drawableXDPI
- Drag&Drop ic_sysbar_back or ic_sysbar_res or ic_sysbar_home or ic_sysbar_recent or ic_sysbar_men etc. (landscape, too) to your desktop and edit it like you want them to be
- Drag&Drop them back into /res/drawableXDPI
- Close WinRAR and you've been asked to save it
- Click yes and put the new APK back to /system/app/
Here's the look of my Galaxy Nexus at this moment:
{
"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"
}
s60mike said:
- Just open the /system/app/systemUI.apk on your PC with WinRAR (don't extract it!)
- Go to directory /res/drawableXDPI
- Drag&Drop ic_sysbar_back or ic_sysbar_res or ic_sysbar_home or ic_sysbar_recent or ic_sysbar_men etc. (landscape, too) to your desktop and edit it like you want them to be
- Drag&Drop them back into /res/drawableXDPI
- Close WinRAR and you've been asked to save it
- Click yes and put the new APK back to /system/app/
Here's the look of my Galaxy Nexus at this moment:
Click to expand...
Click to collapse
thanks for that worked perfect! i used an app from the market called "Simple Text" to create the word icons then saved png to computer renamed it and added to apk.
http://yfrog.com/z/es68xp
@EkostonS: Nice work!
s60mike said:
@EkostonS: Nice work!
Click to expand...
Click to collapse
now i have to find out where the background to the soft buttons are so i can make it transparent + smaller in height
s60mike said:
- Just open the /system/app/systemUI.apk on your PC with WinRAR (don't extract it!)
- Go to directory /res/drawableXDPI
- Drag&Drop ic_sysbar_back or ic_sysbar_res or ic_sysbar_home or ic_sysbar_recent or ic_sysbar_men etc. (landscape, too) to your desktop and edit it like you want them to be
- Drag&Drop them back into /res/drawableXDPI
- Close WinRAR and you've been asked to save it
- Click yes and put the new APK back to /system/app/
Here's the look of my Galaxy Nexus at this moment:
Click to expand...
Click to collapse
Are you on aokp v9? If so can you upload your SystemUI.apk please. I really like the look of that.
Sent from my Galaxy Nexus using Tapatalk
s60mike said:
- Just open the /system/app/systemUI.apk on your PC with WinRAR (don't extract it!)
- Go to directory /res/drawableXDPI
- Drag&Drop ic_sysbar_back or ic_sysbar_res or ic_sysbar_home or ic_sysbar_recent or ic_sysbar_men etc. (landscape, too) to your desktop and edit it like you want them to be
- Drag&Drop them back into /res/drawableXDPI
- Close WinRAR and you've been asked to save it
- Click yes and put the new APK back to /system/app/
Here's the look of my Galaxy Nexus at this moment:
Click to expand...
Click to collapse
How did you get the brightness adjuster in the notification bar? Sorry if this is a noob question
prestonbrownie said:
How did you get the brightness adjuster in the notification bar? Sorry if this is a noob question
Click to expand...
Click to collapse
That's Part of the CustomRom I'm using Just tap on the Settings in the Notificationbar and you'll see the brightness-Slider etc.
cjward23 said:
Are you on aokp v9? If so can you upload your SystemUI.apk please. I really like the look of that.
Click to expand...
Click to collapse
Fancy Widgets
Smooth Calendar
Softkey-Mod
[ROM] [AOSP] Android Open Kang Project - maguro build 9 [Dec 21]
Latest TUNA Kernel
I hope the following Dropbox-Link works
http://dl.dropbox.com/u/13179887/MobiFlip/SystemUI.apk
s60mike: do you know where the backgrounds for softkeys and status bar live?
ive found where to adjust the height of the softkey background i just cant get framework to decompile on windows or linux
@EkostonS:
Sorry - don't know. I've used a systemUI.apk with transparent Notification- AND Softkey-Bar (I found it somewhere here on XDA) and I must say that this only looks good on the Homescreen. Every second App got a ugly grey Notification-Bar (e. g. Facebook etc.) with this mod.
The only good thing with this mod is that everybody can see the hole UGE Screen of the Galaxy Nexus while in Homescreen
The Softkeys are using transparent PNG's. So you must use Icons with transparent Background like in my case:
s60mike said:
@EkostonS:
Sorry - don't know. I've used a systemUI.apk with transparent Notification- AND Softkey-Bar (I found it somewhere here on XDA) and I must say that this only looks good on the Homescreen. Every second App got a ugly grey Notification-Bar (e. g. Facebook etc.) with this mod.
The only good thing with this mod is that everybody can see the hole UGE Screen of the Galaxy Nexus while in Homescreen
The Softkeys are using transparent PNG's. So you must use Icons with transparent Background like in my case:
Click to expand...
Click to collapse
yeah ive used that mod, i miss it, its for 4.0.1 only makes systemui.apk crash if you install it on 4.0.3
i just gotta find out which files are what, cause he did a bunch of random changes to his systemui.
EkostonS said:
yeah ive used that mod, i miss it, its for 4.0.1 only makes systemui.apk crash if you install it on 4.0.3
i just gotta find out which files are what, cause he did a bunch of random changes to his systemui.
Click to expand...
Click to collapse
I believe for the transparent softkey-background it was only a simple .9.png file with a transparent background in it?
s60mike said:
I believe for the transparent softkey-background it was only a simple .9.png file with a transparent background in it?
Click to expand...
Click to collapse
yes statusbar_background.9.png
but there are some xml mods too to go along with it. searchin for them.
can you decompile apks?
EkostonS said:
yes statusbar_background.9.png
but there are some xml mods too to go along with it. searchin for them.
can you decompile apks?
Click to expand...
Click to collapse
Nope. Tried that different times and every time I've got FCs when pushing the modded apk-files back

[ICS][HOW TO] Add system settings background and Transparent Dialer

I posted some screenshots a long time ago that show a transparent dialer and system settings background
I’m tired of answering pm’s so for people who are familiar with apktool and xml-editing, here’s what to do.
Add system settings background
{
"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"
}
open file to Framework-res.apk res/drawable-nodpi you find a file and replace the background image tw_background_dark.png the same size 480x800
Transparent Dialer
Decompile Contacts.apk and open
Styles.xlm
in \res\values
In line 3,4,5 remove
Code:
<style name="DialtactsTheme" parent="@android:style/Theme.DeviceDefault">
<item name="android:textColorSecondary">@color/dialtacts_secondary_text_color</item>
<item name="android:actionBarStyle">@style/DialtactsActionBarStyle</item>
and add our string resources
Code:
<style name="DialtactsTheme" parent="@android:style/Theme.DeviceDefault.Wallpaper">
<item name="android:textColorSecondary">@color/dialtacts_secondary_text_color</item>
<item name="android:windowBackground">@drawable/dial_bg</item>
<item name="android:actionBarStyle">@style/DialtactsActionBarStyle</item>
save and close
These add files in res/drawable-hdpi have to be transparent:
dial_bg.png size 480x800
Recompile Contacts.apk.
nice, was searching for this background mod. It was there in resurrection rom
After Compiling the app again, should I sign it or leave it be? Since its a system app I want make sure cuz I get a 'unsigned' tag added to the beginning of the apk file when I don't sign. I'm new to this stuff so please be easy on me been googling alot to try and fully understand messing with different apks
MoPhoACTV Initiative
moonzbabysh said:
After Compiling the app again, should I sign it or leave it be? Since its a system app I want make sure cuz I get a 'unsigned' tag added to the beginning of the apk file when I don't sign. I'm new to this stuff so please be easy on me been googling alot to try and fully understand messing with different apks
MoPhoACTV Initiative
Click to expand...
Click to collapse
Not necessary to sign
Thank you
nguyenxuanhoa said:
I posted some screenshots a long time ago that show a transparent dialer and system settings background
I’m tired of answering pm’s so for people who are familiar with apktool and xml-editing, here’s what to do.
Add system settings background
open file to Framework-res.apk res/drawable-nodpi you find a file and replace the background image tw_background_dark.png the same size 480x800
Transparent Dialer
Decompile Contacts.apk and open
Styles.xlm
in \res\values
In line 3,4,5 remove
Code:
<style name="DialtactsTheme" parent="@android:style/Theme.DeviceDefault">
<item name="android:textColorSecondary">@color/dialtacts_secondary_text_color</item>
<item name="android:actionBarStyle">@style/DialtactsActionBarStyle</item>
and add our string resources
Code:
<style name="DialtactsTheme" parent="@android:style/Theme.DeviceDefault.Wallpaper">
<item name="android:textColorSecondary">@color/dialtacts_secondary_text_color</item>
<item name="android:windowBackground">@drawable/dial_bg</item>
<item name="android:actionBarStyle">@style/DialtactsActionBarStyle</item>
save and close
These add files in res/drawable-hdpi have to be transparent:
dial_bg.png size 480x800
Recompile Contacts.apk.
Click to expand...
Click to collapse
Thanks for your work. it's fantastic
Probably a stupid question but im asking anyway i use to use this mod back when i had my galaxy s2 now i have a galaxy note would this still work for that?
Thanx a lot mate!! Awesome work :thumbup:
Sent from my GT-I9100 [Omega v12 rom] using XDA Premium
Thank you pal, thank you.
I'm searching for this for a long time.
But I've got a question:
how can I change call-time interface? you know the UI you see when dialed a number. whatever I do, it is alwasy stock-theme
andhow to get settings app background transparent ? I'm searchinf for 2 weeks and still don't know
patou75 said:
andhow to get settings app background transparent ? I'm searchinf for 2 weeks and still don't know
Click to expand...
Click to collapse
have you tried Go Launcher?? go launcher setting/preferences/visual setting/backgrounds/app drawer background
HIT THANKS BUTTON IF I HELP
Nice work. Was looking for this.
Sent from my GT-I9100 using xda app-developers app

[25/09][MOD][S/SL/ion][1.96] Fixed White Settings from Honami

I fixed some of bugs from @beniamin24 's settings. At first read his thread (http://forum.xda-developers.com/showthread.php?t=2359591)​
For a best Honami look I recommend to use:
Settings from this thread
 @jjwrongjj 's Z Ultra framework: http://forum.xda-developers.com/showthread.php?t=2447138
 @TitaniumZERO 's white apps: http://forum.xda-developers.com/showthread.php?t=2457918
And my Honami themes: http://forum.xda-developers.com/showthread.php?t=2461574
Apps in pack:
White settings
White skin-picker
White sound-picker
White lockscreen settings
White Xperia settings with white ICC settings
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"
}
Installation:
Unpack (It's not flashable zip!), copy to /system, change permissions to rw-r--r--, move to /system/app and reboot
Download:
https://app.box.com/s/2b4gew8z4uaw1a8hd8ls​Credits to:
@beniamin24 for his white settings from link at top
@Pandemic for give to @beniamin24 Honami settings base
@thewerthon for Sound-picker
@TitaniumZERO for working white theme picker and tut how to change lockscreen settings to white
@whalesplaho for help with compiling
@jjwrongjj for tut "how to add Quick Settings"
@niaboc79, @Aeron sagar and all other modders for honami ports.
and all users for testing and bug-catching
If I skipped somebody please PM to me
REQUEST TO ALL MODDERS Please help :'(
In this setting are some bugs that i don't know how to fix. Here they are:
Dark pop-up (not white) with black text in wifi and bluetooth - FIXED!
And second white text on white background in accounts section (If we choose e.g. Google account there are three options written by white text on white background):
Next is wrong text in settings when we choose app in running section:
If somebody know how to fix it or can fix it for me please contact with me via PM I'll be grateful
What about credits and a screenshot with the actual settings?
beniamin24 said:
What about credits and a screenshot with the actual settings?
Click to expand...
Click to collapse
I wrote at the beggining that settings are from you and linked your thread. But I will add credits when i'll be on computer. Thanks for remind
//EDIT:
@beniamin24, I edited OP
Thank you sir for these fixed settings. You are the boss!
YuriBasescu said:
Thank you sir for these fixed settings. You are the boss!
Click to expand...
Click to collapse
Esti ROman?)
beniamin24 said:
Esti ROman?)
Click to expand...
Click to collapse
Nope. But I wish I were.
Sent from my LT26i using xda app-developers app
YuriBasescu said:
Nope. But I wish I were.
Sent from my LT26i using xda app-developers app
Click to expand...
Click to collapse
maaaa stii limba romana ) Basescule )
Great @HitFan :good:
:::[ Pandemic ..:: JB MoonBreakers® 4 Ever !!:..
Sent From The Moon With My Xperia P !
While you are taking in some interesting language I'll ask you one thing. @beniamin24 and @HitFan
Could someone open new thread and write a tutorial "how to change settings color/background"
I know I would like to know that (I know 60-70% but I'm still taping in a dark and sometimes hit a wall) and I'm sure there's plenty of guys who are interested in that theme.
Which png to change, which xml to edit, decompile, recompile, sign...
Maybe even for framework-res.apk.
Just the basics.
I know we have similar tutorials but nozomi is device full of surprises and if you guys wanna share your knowledge I would appreciate that.
Tnx
Sent from my LT26i using Tapatalk 4
funky0308 said:
While you are taking in some interesting language I'll ask you one thing. @beniamin24 and @HitFan
Could someone open new thread and write a tutorial "how to change settings color/background"
I know I would like to know that (I know 60-70% but I'm still taping in a dark and sometimes hit a wall) and I'm sure there's plenty of guys who are interested in that theme.
Which png to change, which xml to edit, decompile, recompile, sign...
Maybe even for framework-res.apk.
Just the basics.
I know we have similar tutorials but nozomi is device full of surprises and if you guys wanna share your knowledge I would appreciate that.
Tnx
Sent from my LT26i using Tapatalk 4
Click to expand...
Click to collapse
I can't help you :/ I decompiled app with one of tuts on forum, found wrong-sized PNGs, replace it by new ones, and add Quick Settings with one of tuts. Next found original line with wallpaper and copied it to Personalization section. After all i packed it all to Zip and post request to compile it, becouse i can't do it. It's all. I'm neewbie, it's my first 'mod' for Android, previously I was modding Symbian S60v3 and Nokia's S40 Phones. Here's one of my modifications for Nokia 5310 Xpress Music: http://nokiahacking.pl/s40-belle-vt24546.htm
HitFan said:
I can't help you :/ I decompiled app with one of tuts on forum, found wrong-sized PNGs, replace it by new ones, and add Quick Settings with one of tuts. Next found original line with wallpaper and copied it to Personalization section. After all i packed it all to Zip and post request to compile it, becouse i can't do it. It's all. I'm neewbie, it's my first 'mod' for Android, previously I was modding Symbian S60v3 and Nokia's S40 Phones. Here's one of my modifications for Nokia 5310 Xpress Music: http://nokiahacking.pl/s40-belle-vt24546.htm
Click to expand...
Click to collapse
Believe me - you are better then "old" dev.
Because you are, like me, new in this and you'll pay more attention.
If you did all that - I'm sure you are right for that
Maybe we could join our minds and make something smart to help community.
We could open thread and do together, not only you and me - but everyone who can help.
It would be great when ben or niaboc.release MOD and everyone MOD it like he/she likes
Sent from my LT26i using Tapatalk 4
thanks man work fine
but when i select adapt to lighting conditions and press ok it back to unmarked :crying:
hisoka78 said:
thanks man work fine
but when i select adapt to lighting conditions and press ok it back to unmarked :crying:
Click to expand...
Click to collapse
I know it. In @beniamin24 's settings is the same, in some other modded settings that i was using this option didn't work. In stock settings there isn't this option. I don't founded settings with this option working :/
very nice! its working on my xsl ) thanks for sharing!
Hey guys! I found two bugs, but i don't know where i need looking for solution to fix it. If somebody know this please PM me
In Wi-Fi i have dark background, not white, and in accounts section, when I choose Xperia with Facebook, or Google there is white text on white background. For first bug, where can i found PNG with dark background to change to white? And next which XML is responsible for text in settings?
Here are screenshots:
Please help me
I was searching in account_preference, account_sync_screen and add_account_screen, and many other xml but I didn't find #ffffffff value for white...
i have a question. when i install the leopard rom, it says "X-Reality Mobile" but when i installed this MOD, the x-reality become mobile bravia engine. is it normal or a bug?? how to bring back the x-reality?
HitFan said:
Hey guys! I found two bugs, but i don't know where i need looking for solution to fix it. If somebody know this please PM me
In Wi-Fi i have dark background, not white, and in accounts section, when I choose Xperia with Facebook, or Google there is white text on white background. For first bug, where can i found PNG with dark background to change to white? And next which XML is responsible for text in settings?
Here are screenshots:
Please help me
I was searching in account_preference, account_sync_screen and add_account_screen, and many other xml but I didn't find #ffffffff value for white...
Click to expand...
Click to collapse
@HitFan
check SemcSettings.apk
HitFan said:
Hey guys! I found two bugs, but i don't know where i need looking for solution to fix it. If somebody know this please PM me
In Wi-Fi i have dark background, not white, and in accounts section, when I choose Xperia with Facebook, or Google there is white text on white background. For first bug, where can i found PNG with dark background to change to white? And next which XML is responsible for text in settings?
Here are screenshots:
Please help me
I was searching in account_preference, account_sync_screen and add_account_screen, and many other xml but I didn't find #ffffffff value for white...
Click to expand...
Click to collapse
How about the white icons in volume sub-menu? Could you try to fix it too?
TitaniumZERO said:
How about the white icons in volume sub-menu? Could you try to fix it too?
Click to expand...
Click to collapse
That is framework related @TitaniumZERO
Pandemic said:
@HitFan
check SemcSettings.apk
Click to expand...
Click to collapse
I decompiled it, but there aren't any important values in XMLs or PNGs... ;(

[MOD][STOCK][L]Coloured/Transparent Notification Bar [Updated]

Hello Guys!
Bored with that ugly Bluish Stock Like Notification Bar?
So I Have made Colorful transparent Notification bar to suit our Xperia's!
Black:-
{
"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"
}
Red:-
Green:-
Blue:-
Stock Transparent:-
Requirements :-
-ROOT is required
-Stock Rom 5.0.2/5.1.1
-And a working recovery
Instructions :-
Just Flash the Zip through recovery or push manually by setting correct permissions.
Works on both Odex/De-odex.
Downloads :-
Gdrive:-
https://drive.google.com/folder/d/0B2XXxm2bHzgDaUlOLXgzOW5hbkE/edit
[Confirmed Working]Tested On Z,Z1,Z3,Z3C,Z2,Z4, Z Ultra,Z Tab,Z2 Tab
Should work for all 5.0.2/5.1.1 Stockrom Sony devices
For Further Updates, You Guys can suggest me some colors and combinations too!
Njoy!
Hit thanks If You Like My Work
i love it, but can u do a more original version, the original color and all but with transparent look the expanded pls
Looks great... If I flash this on my Z3, will I loose my theme effects for good or will it change if I install a custom theme from a dev ??? I'll flash and give you feedback...
ChristianMx said:
i love it, but can u do a more original version, the original color and all but with transparent look the expanded pls
Click to expand...
Click to collapse
Yes I am working on a full deep black also...the problem with notifiication to turn black are text glitches...ill try
dj_richard05 said:
Looks great... If I flash this on my Z3, will I loose my theme effects for good or will it change if I install a custom theme from a dev ??? I'll flash and give you feedback...
Click to expand...
Click to collapse
Nope the theme accent will change according to the theme and waiting for feedback
can this work on xperia z ultra ??
yashkadam0012 said:
can this work on xperia z ultra ??
Click to expand...
Click to collapse
It should work....ply try n feedback
I refer to make it original light green color but the expanded notifications blurred/transparent
ChristianMx said:
I refer to make it original light green color but the expanded notifications blurred/transparent
Click to expand...
Click to collapse
Okay ill make one
working on z3 compact thanks a lot @SonyRiFle
in future updates could please add dynamic nav bar too
Guide for dynamic nav bar
res\values\drawables.xml
Change
<item type="drawable" name="somc_navbar_background_dark">@color/system_bar_background_opaque</item>
<item type="drawable" name="somc_navbar_background_dark_land">@color/system_bar_background_opaque</item>
<item type="drawable" name="somc_navbar_background_light">@drawable/somc_navbar_background_dark</item>
<item type="drawable" name="somc_navbar_background_light_land">@drawable/somc_navbar_background_dark_land</item>
Click to expand...
Click to collapse
To
<item type="drawable" name="somc_navbar_background_dark">@android:color/somc_color_dark_primary_dark</item>
<item type="drawable" name="somc_navbar_background_dark_land">@android:color/somc_color_dark_primary_dark</item>
<item type="drawable" name="somc_navbar_background_light">@android:color/somc_color_dark_primary_light</item>
<item type="drawable" name="somc_navbar_background_light_land">@android:color/somc_color_dark_primary_light</item>
Click to expand...
Click to collapse
No conflict with serajr Xperia xposed ?
Thx
Sent from my D5503 using XDA Free mobile app
Working great on my Xperia Z3 (23.1.A.1.28) and Serajr Xperia xposed seems to be working fine too.
Pakman123 said:
working on z3 compact thanks a lot @SonyRiFle
in future updates could please add dynamic nav bar too
Guide for dynamic nav bar
res\values\drawables.xml
Change
To
Click to expand...
Click to collapse
Sure Mate...The next update will be of differnet colours! And your need for dynamic nav bar also!
fl4r3 said:
Working great on my Xperia Z3 (23.1.A.1.28) and Serajr Xperia xposed seems to be working fine too.
Click to expand...
Click to collapse
Thanx For testing!
Funkmasterchilla said:
No conflict with serajr Xperia xposed ?
Thx
Sent from my D5503 using XDA Free mobile app
Click to expand...
Click to collapse
Yes its working fine with serajr xposed
Reupdated OP.
Added 5 Colours...More colour Suggestions needed
Next update with dynamic navbar will also be added
SonyRiFle said:
Reupdated OP.
Added 5 Colours...More colour Suggestions needed
Next update with dynamic navbar will also be added
Click to expand...
Click to collapse
Please add dynamic navbar as an option, not everyone likes em
Thanks
I have just theme accent ^^
No matter which theme i choose red, blue or green it will accords to theme
Nice btw :good:
Sended From My Z3 On Moonwalker Provolution V1.5 To Your Eyes !
Pandemic said:
I have just theme accent ^^
No matter which theme i choose red, blue or green it will accords to theme
Nice btw :good:
Sended From My Z3 On Moonwalker Provolution V1.5 To Your Eyes !
Click to expand...
Click to collapse
Thanx! Can you tell me the colour code for the theme accent to work accrdng to theme?
How to fix white bg and text in this mod?
Spoiler

[Guide] How To Fully Theme Xperia Keyboard - 20/4

Here We Are Again with a new Guide which is Full Theming Xperia Keyboard, in this guide i'm gonna show you the way to modify light & dark & light-dark themes, to your own custom themes .
What You Need :
Putting My Name In Credits .
PC .
Notepad++ .
Xperia LP Framework Installed ( ApkTool ) .
Resources :
Material Concept Colors - By Google .
Links :
Material Xperia Keyboard With According To Theme Feature .
How-To ~ Editing Themes Colors :
Before Xperia Keyboard v72A032 :
First of all, Xperia Keyboard Themes are Light - Dark - Light & Dark, the Colors codes are like the following :
button_pressed> this line define the button in Light & Dark theme .
button_pressed_light> this line define the button in Light theme .
button_pressed_dark> this line define the button in Dark theme .
Let's start with Light Theme Modifaction, check out this image to know the codes and what it means .
Navigate to res/values/colors.xml to modify them .
Backgrounds :
Light + Light & Dark : keyboard_background
Dark : keyboard_background_dark
Emoji Indicator
Light + Light & Dark : emoji_tab_indicator
Dark : emoji_tab_indicator_dark
keyboard_button_popup_light
keyboard_button_auxiliary_light
keyboard_button_function_light
keyboard_button_auxiliary_pressed_light
keyboard_button_light
keyboard_button_function_pressed_light
keyboard_button_pressed_light
{
"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"
}
keyboard_button_popup_dark
keyboard_button_auxiliary_dark
keyboard_button_function_dark
keyboard_button_auxiliary_pressed_dark
keyboard_button_dark
keyboard_button_function_pressed_dark
keyboard_button_pressed_dark
keyboard_button_popup
keyboard_button_auxiliary
keyboard_button_function
keyboard_button_auxiliary_pressed
keyboard_button
keyboard_button_function_pressed
keyboard_button_pressed
How-To ~ Removing Buttons Shadow For The Material/Flat Look :
Navigate to your "dpi" folder, for example Xperia Z1 = xxhdpi .
Open these with Photoshop or anything similar :
ic_keyboard_floating_move_shadow.9
ic_keyboard_floating_shadow.9
ic_keyboard_longpress_shadow.9
ic_keyboard_multitapbox_shadow.9
ic_keyboard_button_shadow.9
Delete everything in the image expect the black lines ( 9.png lines for auto-resizing ) .
How-To ~ Editing Text Colors :
Editing Light Theme Text Color : res/color/key_text_color_light.xml
Editing Dark Theme Text Color : res/color/key_text_color_dark.xml
Editing Light & Dark Theme Text Color : res/color/key_text_color.xml
Xperia Keyboard v72A032 & After :
Download the following XML File from HERE, After that just follow the comments , Modify them, then replace it with Keyboard/res/colors.xml ( replace the lines values, not the whole xml file ) .
Making it According To Theme :
It's very simple - the way, just follow this Guide, it works with this too .
Updated, forgot something important in the Guide,which is buttons shadow .
abo hani said:
Updated, forgot something important in the Guide,which is buttons shadow .
Click to expand...
Click to collapse
Thanks for your guide bro.. I have edited the dark keyboard and make my own full black one.. But, the space bar is not visible. How to make it visible by simply making a light grey border or by something else? Help me dude!!
@abo hani brov.... i was able to make an overlay for tha Xperia Keyboard, im using tha latest keyboard version Xperia™ keyboard 6.7.A.0.92 with an overlay. i themed tha keyboard using yur material colored keyboard as a guy but as yhu can see in tha first screenshot, tha color is too dark, cant be see while in second screenshot, its okay but doesnt av additional color like in tha first screenshot! please help cos before upgrading my keyboard to latest one, i was using yurs & wasnt dis dark!
https://r.tusfiles.net/i/08374/nl4z8irmm46u.png
https://r.tusfiles.net/i/08374/93beuz2yw6t9.png
whalesplaho said:
@abo hani brov.... i was able to make an overlay for tha Xperia Keyboard, im using tha latest keyboard version Xperia™ keyboard 6.7.A.0.92 with an overlay. i themed tha keyboard using yur material colored keyboard as a guy but as yhu can see in tha first screenshot, tha color is too dark, cant be see while in second screenshot, its okay but doesnt av additional color like in tha first screenshot! please help cos before upgrading my keyboard to latest one, i was using yurs & wasnt dis dark!
https://r.tusfiles.net/i/08374/nl4z8irmm46u.png
https://r.tusfiles.net/i/08374/93beuz2yw6t9.png
Click to expand...
Click to collapse
Are you using According to accent?
If so, it's depend on Theme colors, Accent & Primary, And you need to modify text color also, and remove the shadows .
@abo hani i was able to achieve dis but not as perfect as yurs cos yurs was fully material!!!
https://dl.tusfiles.net/FS99/i/08384/7yy40o7fin03.png
whalesplaho said:
@abo hani i was able to achieve dis but not as perfect as yurs cos yurs was fully material!!!
https://dl.tusfiles.net/FS99/i/08384/7yy40o7fin03.png
Click to expand...
Click to collapse
You forgot the shadow png, you need to remove the shadow using Photoshop or any other Photo-Editing tool, but don't clear the black lines, those are 9 format lines.
abo hani said:
You forgot the shadow png, you need to remove the shadow using Photoshop or any other Photo-Editing tool, but don't clear the black lines, those are 9 format lines.
Click to expand...
Click to collapse
whew!!! can yhu help me with dah & upload tha pngs for me please?
thanks brov....
whalesplaho said:
whew!!! can yhu help me with dah & upload tha pngs for me please?
thanks brov....
Click to expand...
Click to collapse
Decompile my Themed Keyboard, get them from drawable/xxhdpi folder, everything related with " shadow ", copy & replace .
abo hani said:
Decompile my Themed Keyboard, get them from drawable/xxhdpi folder, everything related with " shadow ", copy & replace .
Click to expand...
Click to collapse
thanks alot brov.... gonna do dat now!:good::good::good::highfive::highfive::highfive:
still same brov... not as material flat like yurs, thanks for yur help!
https://r.tusfiles.net/i/08398/84pzol7c3w44.png
whalesplaho said:
still same brov... not as material flat like yurs, thanks for yur help!
https://r.tusfiles.net/i/08398/84pzol7c3w44.png
Click to expand...
Click to collapse
Bro, you aren't making Shadow.png Drawables transparent ..
Decompile my Themed Keyboard, take Shadow drawables from drawable-xxhdpi folder, and replace them with yours .
abo hani said:
Bro, you aren't making Shadow.png Drawables transparent ..
Decompile my Themed Keyboard, take Shadow drawables from drawable-xxhdpi folder, and replace them with yours .
Click to expand...
Click to collapse
i did brov.... see tha attached zip file!!!!
https://tusfiles.net/r7zyuw37ah2d
thanks for yur help always!:good::good::highfive::highfive:
Hey, maybe you can help me in answer one question according to keyboard modding. How can i make these orange highlighted Text in the middle to another color like dark grey or black? Thx in advance
air32 said:
Hey, maybe you can help me in answer one question according to keyboard modding. How can i make these orange highlighted Text in the middle to another color like dark grey or black? Thx in advance
View attachment 3537900
Click to expand...
Click to collapse
This change according to accent, so if you wanna make a hex color " static " i mean, Search about somc_color or somc, and you will find the line ( in Colors, or Styles ) .
whalesplaho said:
i did brov.... see tha attached zip file!!!!
https://tusfiles.net/r7zyuw37ah2d
thanks for yur help always!:good::good::highfive::highfive:
Click to expand...
Click to collapse
https://my.pcloud.com/publink/show?code=XZWAFzZ7pBWjTPjieSrkk4c9hUrxHAOBGLX
Download, Replace with xxhdpi folder, it may not display if your Device is xhdpi, so make sure you are editing your DPI folder .
abo hani said:
https://my.pcloud.com/publink/show?code=XZWAFzZ7pBWjTPjieSrkk4c9hUrxHAOBGLX
Download, Replace with xxhdpi folder, it may not display if your Device is xhdpi, so make sure you are editing your DPI folder .
Click to expand...
Click to collapse
still tha same brov.... i noticed there is a new line added in color.xml for tha new keyboard, can it be tha cause? please why not just tha new keyboard out & see!
Code:
<color name="default_accent_color">#ff64c9ff</color>
whalesplaho said:
still tha same brov.... i noticed there is a new line added in color.xml for tha new keyboard, can it be tha cause? please why not just tha new keyboard out & see!
Code:
<color name="default_accent_color">#ff64c9ff</color>
Click to expand...
Click to collapse
Default Accent color if no Theme enabled, you can modify it and link it with somc_color_primary ..etc, no need to worry.
abo hani said:
Default Accent color if no Theme enabled, you can modify it and link it with somc_color_primary ..etc, no need to worry.
Click to expand...
Click to collapse
wat m i not doing right brov? see my compiled files......
https://tusfiles.net/e7uy6wk8h279

Categories

Resources