[request] gradinet status bar for [ics mdpi] - Sony Ericsson Xperia Mini, Mini Pro, Xperia Pro, A

please can any dev convert this mod for mdpi
forum.xda-developers.com/xperia-j-e/themes-apps/ics-z2-gradient-status-bar-style-t2684091
I tried to port gradinet_bg.xml from drwable from this post and change line statusbar _bg from status bar.xml from layout from my systemui.apk and compile it again
but when open any xml in my computer by notepad++ I get strange characters like nul in black box and can't fix this problem any way I work on windows 8.1
please help me
and sorry for my bad English
my systemui in attach and I want to do this mod for my systemui file
sent from mini pro

my systemui
medozzz0 said:
please can any dev convert this mod for mdpi
forum.xda-developers.com/xperia-j-e/themes-apps/ics-z2-gradient-status-bar-style-t2684091
I tried to port gradinet_bg.xml from drwable from this post and change line statusbar _bg from status bar.xml from layout from my systemui.apk and compile it again
but when open any xml in my computer by notepad++ I get strange characters like nul in black box and can't fix this problem any way I work on windows 8.1
please help me
and sorry for my bad English
my systemui in attach and I want to do this mod for my systemui file
sent from mini pro
Click to expand...
Click to collapse
my systemui from my phone

117 view and no reply
please any suggest any help any mod systemui gredient like post for mdpi

medozzz0 said:
117 view and no reply
please any suggest any help any mod systemui gredient like post for mdpi
Click to expand...
Click to collapse
search tutorial how to decompile recompile apk, how to make transparent statusbar on ICS, if you done with that I will sent you PNG with gradient effect, it better and easier than that gradient.XML

done
please attach png with gredient effect and I will try to mod my systemui with your method

medozzz0 said:
done
please attach png with gredient effect and I will try to mod my systemui with your method
Click to expand...
Click to collapse
here https://db.tt/EbgO113Y

Related

Help with SystemUI

Hi! Can you help me with this SystemUI?! I've to change the clock color to a dark gray! Please help, you can mod downloading it as attachement! Ty!
just edit the color.xml in the layout folder easy......
ajay8055 said:
just edit the color.xml in the layout folder easy......
Click to expand...
Click to collapse
i was gonna say that, or edit the UI image from drawable hdpi in like photoshop :good:

[how-to]change status bar clock color on latest samsung released rom

Hi , I had search every where how to change clock color on status bar in latest Samsung ROM ( JB ) but non-work
Coz its code is a bit different from other ROM. So here's how
Requirement :
SystemUI.apk
A bit knowledge about decompiling
Patience
First --->
Decompile your systemUI.apk, go res/layout/tw_status_bar.xml
Then --->
Search for this code
Code:
<com.android.systemui.statusbar.policy.Clock
Then --->
You will see
Code:
android:textColor="#fffefefe
behind it.
Now you may change whatever color you want by changing the code.
Here http://html-color-codes.info/ it maybe useful for you to find the color code
Note : The last 6-digit IS the color code, whereby
the two in front it is transparency.
It count by
#FF****** ( Opaque )
#00****** (Transparent )
It is recommended not to change the first two digits except you know what you are doin :laugh:
Now --->
Recompile your apk , drag resources.arsc and tw_status_bar.xml from your newly build APK to your old SystemUI.apk
Finally --->
Push your SystemUI,apk to system/app of your phone and reboot.
DONE.
DO PRESS THE THANKS BUTTON IF I HELP YOU !!!! CHEERS
Thanks
And to center the clock you can make an 'how to' ?
do i need the framework-res.apk when decompining,ma8?
Sent from my GT-I9100 using Xparent Skyblue Tapatalk 2
can't seem to work
everytime i try to either decompile the systemUI i make the changes but when i try to compile the systemUI back to an .apk file it doesnt compile it gives me errors i tried APKtool and APK manager both which gives me the errors also when i ty to do it which out decompiling them it gives me systmUI Force Close.. idk what to do please
Mundo Hackz said:
everytime i try to either decompile the systemUI i make the changes but when i try to compile the systemUI back to an .apk file it doesnt compile it gives me errors i tried APKtool and APK manager both which gives me the errors also when i ty to do it which out decompiling them it gives me systmUI Force Close.. idk what to do please
Click to expand...
Click to collapse
I would double check what codes you are using for the colors as I tried the html code and it wouldn't compile. When i searched for an ARGB color chart I was able to re-compile
Thanks for the info JoFury

[Guide] [Mod] How to make any gingerbread or cm7/cm9 status bar transparent

How to make any gingerbread or cm7/cm9 status bar transparent
Check my signature for all my statusbars including pre-made stock cm7/cm9 and Aosp statusbars and guides​
There's three ways to make the statusbar bar Transparent and I'll post them all
One way works with any gingerbread rom (deodex & rooted) and one with cyanogen 7
I have not tried it on ics or jelly bean but you can try (for people who stumble across this thread who are not galaxy y users)
Please dont ask for support unless you are using a custom rom on galaxy y
Any other phones please goto your own phone forum for support
You also need a launcher that is capable of transparency
Adw works but you need to disable wallpaper hack in settings
holo launcher works
any other launcher if it doesn't work look in it's settings & try & disable wallpaper hack or manage internally
Method one for non cm (Stock Deodex Rom)
You need apk tool installed - if you don't know how to use it see my guide here
http://forum.xda-developers.com/showthread.php?t=2206938
Once you have decompiled SystemUI.apk using apk tool goto res/layout Open status_bar.xml in notepad
Find the following line
Code:
<com.android.systemui.statusbar.StatusBarView android:orientation="vertical" [COLOR="Red"]android:background="#ff000000"[/COLOR] android:focusable="true" android:descendantFocusability="afterDescendants"
Notice the part highlighted in red android:background is normally a hexadecimal value or it could be a drawable value
either way change the red part to the following
Code:
<com.android.systemui.statusbar.StatusBarView android:orientation="vertical" [COLOR="Red"]android:background="@drawable/nameofpng" [/COLOR]android:focusable="true" android:descendantFocusability="afterDescendants"
Notice that android:background is now a drawable value
Change nameofpng to the name of your transparent background image (just the name - do not include the file extension .png)
place this image with the same name as the drawable value in res/drawable-ldpi
(of course other devices might be in mdpi or hdpi)
Recompile and sign apk
Put in a flashable zip and flash with system mounted
You can download and use the pngs in the attachment (for ldpi like galaxy y) or create your own
To create a transparent status bar image just take a non Transparent one and edit it in a photo application to make it Transparent (make sure image dimensions stay the same and is for your phone resolution)
Method two for cm7
Note you will need apk tool installed and notepad++ installed
Download the patcher tool by Z25 in attachment
Unzip the contents to a folder
Place your SystemUI.apk and framework-res.apk in files_to_patch
Run patcher.bat
Select status bar tweaks and enable only transparent status bar
Edit the smali file as described in the text file that pops up
Select option build and sign
Select option to create zip files
You now have a zip file called patch.zip
unzip this and take out the SystemUI.apk - we will save this for later
Now we have to either make our own transparent theme or you can download a theme from the playstore for theme chooser that already contains status bar transparency
If you are downloading a theme from the playstore skip the part "To create your own theme" and go straight to the part "final steps"
To create your own theme
Goto uot kitchen http://uot.dakra.lt/kitchen
Take cyanbread.apk from the app folder of your cm7 rom & place on pc (or any other Theme Chooser Theme you wish to make transparent)
Rename it to what you want to call theme
Upload it to kitchen (under cm7 theme in file upload)
In status bar tweaks set background transparency to around 70% Transparent and any other settings you need like carrier or footer - don't forget to generate preview once done
Make sure you have selected ldpi in statusbar tweak settings and ldpi/mdpi for theme chooser preview in file upload (other devices may vary) and in file upload change update binary to galaxy
Then goto summary section
If everything is green create the theme
If not make sure you have clicked generate preview on status bar tweaks
Kitchen will then create theme for you
Download the zip file from kitchen and unzip it
Take out your theme apk
Final Steps
Sign both your theme apk and SystemUI.apk that you saved from earlier with a platform key using zipsigner (playstore)
Put both apks in a flashable zip and flash in cwm with system mounted
(note if you are using a theme from the playstore just do this for SystemUI.apk)
Once the phone has booted goto
ADWLauncher
System Preference
Disable Wallpaper Hack (untick the box)
Your status bar is now transparent
Method three for cm9
Once you have decompiled SystemUI.apk with apktool
Goto smali/com/android/systemui/statusbar/StatusBar.smali
Find the following line
Code:
invoke-direct/range {v11 .. v16}, Landroid/view/WindowManager$LayoutParams;-><init>(IIIII)V
Above this line change
Code:
const/16 v16, 0x4
To the following
Code:
const/16 v16, -0x3
Now in notepad++ open the following
res/values/drawables.xml
Find the following line
Code:
<item type="drawable" name="status_bar_background">#ff000000</item>
Change the hex value to the hex value of the colour/transparency you want
For example
Completely transparent:
Code:
<item type="drawable" name="status_bar_background">#00FFFFFF</item>
70% transparent
Code:
<item type="drawable" name="status_bar_background">#b3000000</item>
50% transparent:
Code:
<item type="drawable" name="status_bar_background">#7f000000</item>
Recompile
Sign with a platform key using zipsigner (playstore)
Put in a flashable zip and flash in cwm with system mounted
What is the name for the png to put in drawable-ldpi?
Re: [Guide] [Mod] How to make any gingerbread or cm7 status bar transparent
remo1995 said:
What is the name for the png to put in drawable-ldpi?
Click to expand...
Click to collapse
You can rename it to ur own like
Jst open statusbar.xml in layout folder and on 2nd line u will find an attribute android;background change the file u want to add next to drawable/xx folder and put that file in ur drawable ldpi folder
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Reporting from incomplete blue theme
Status-paused
framework-working
remo1995 said:
What is the name for the png to put in drawable-ldpi?
Click to expand...
Click to collapse
Name it the name of the @drawable value
In my example it's nameofpng
Re: [Guide] [Mod] How to make any gingerbread or cm7 status bar transparent
Great guide :thumbup:
Sent from my GT-S5360 using xda app-developers app
Thank you, but when I go to recompile the file gives me error
remo1995 said:
Thank you, but when I go to recompile the file gives me error
Click to expand...
Click to collapse
what rom are you using?
decompile then recompile the apk without making any changes - if it compiles correctly you know you have edited the xml file wrong or not placed the corresponding png in the drawable folder
if it still gives errors without you making changes then either you are using apk tool wrong or the apk has other errors from the orig source
marcussmith2626 said:
what rom are you using?
decompile then recompile the apk without making any changes - if it compiles correctly you know you have edited the xml file wrong or not placed the corresponding png in the drawable folder
if it still gives errors without you making changes then either you are using apk tool wrong or the apk has other errors from the orig source
Click to expand...
Click to collapse
I use the cod rom and I'm trying to change the systemUI of marinalin85, the bar s3 style android 4.2.2
remo1995 said:
I use the cod rom and I'm trying to change the systemUI of marinalin85, the bar s3 style android 4.2.2
Click to expand...
Click to collapse
No reason why it shouldn't work - make sure you have loaded SystemUI.apk and framework-res.apk into apktool using the apktool if command
Make sure all your apk tool commands are correct I'll post a guide on it soon
marcussmith2626 said:
No reason why it shouldn't work - make sure you have loaded SystemUI.apk and framework-res.apk into apktool using the apktool if command
Make sure all your apk tool commands are correct I'll post a guide on it soon
Click to expand...
Click to collapse
to compile and decompile it does! the file does not work gives me forced closure! I made you those passages
Apk tool guide added see http://forum.xda-developers.com/showthread.php?t=2206938
remo1995 said:
to compile and decompile it does! the file does not work gives me forced closure! I made you those passages
Click to expand...
Click to collapse
Follow my apk tool guide I just posted - I can assure you if you follow all my guides correctly and Fully you will not get force closes - I have made many status bars using this method
Decompile my SystemUI.apk from my status bar thread so you can compare the line for the statusbar background in status_bar.xml with yours
If you get errors when you decompile the apk it means the apk was wrongly compiled to begin with and apk tool can't decompile it correctly - you will need to correct any errors that are in the original apk before you can recompile
how can i make launcher compatible with transparency like TW launcher?
Sent from my GT-S5360 using Tapatalk 2
iMaker said:
how can i make launcher compatible with transparency like TW launcher?
Sent from my GT-S5360 using Tapatalk 2
Click to expand...
Click to collapse
Some launchers do not support transparency
if it doesn't work and there is no option to disable wallpaper hack or manage internally in the launcher settings or something similar you will need to use a different launcher if you want transparency
even in go launcher it still wont have transparency
Sent from my GT-S5360 using Tapatalk 2
iMaker said:
even in go launcher it still wont have transparency
Sent from my GT-S5360 using Tapatalk 2
Click to expand...
Click to collapse
I don't think go launcher supports transparency
launchers that definitely do are
holo launcher
adw launcher (disable wallpaper hack in settings)
Added a zip of the full and semi transparent png images for people to use themselves with the guide
off topic question sir, how did you move the jellybean clock and date above toggle bar?
joelquerty said:
off topic question sir, how did you move the jellybean clock and date above toggle bar?
Click to expand...
Click to collapse
By placing <com.android.systemui.statusbar.policy.DigitalClock with the corresponding ids and smali files under the relative layout in status_bar_expanded.xml above the line for toggles
marcussmith2626 said:
By placing <com.android.systemui.statusbar.policy.DigitalClock with the corresponding ids and smali files under the relative layout in status_bar_expanded.xml above the line for toggles
Click to expand...
Click to collapse
can you plzz give me the link of tutorial. i searched in google and xda but i could'nt find it... thank you

Help with changing color of these to white

How do I change these letters to white I tried wanma xposed could someone please send a screen shot on what I do please
U need to change one line in color xml in framework
Project X Rom 9505 S5/Note4 Style https://m.facebook.com/projectxrom
dack23 said:
U need to change one line in color xml in framework
Project X Rom 9505 S5/Note4 Style https://m.facebook.com/projectxrom
Click to expand...
Click to collapse
How do I do that
freakyd9984 said:
How do I do that
Click to expand...
Click to collapse
I'm sure there has to be an xposed app out there that will let you do that if someone could just give the name of one I would really appreciate it thank you very much
Decompile framework and edit color xml recompile and have fun
Project X Rom 9505 S5/Note4 Style https://m.facebook.com/projectxrom

How Put transparent toogles in statusbar lg l7ii p715

Hello Brothers of xda I need your help please
How put toogles transparent in status bar,,, without apps,modules xposed ...etc...,,,
I need Mofify the xml files of systemui to put transparent okk !!! help please !!!
Mark XP said:
Hello Brothers of xda I need your help please
How put toogles transparent in status bar,,, without apps,modules xposed ...etc...,,,
I need Mofify the xml files of systemui to put transparent okk !!! help please !!!
Click to expand...
Click to collapse
JB, KK or CM11?
For example, to make only transparent statusbar on JB, you need to decompile/edit 3 apk's and 1 jar...
maxx_hr said:
JB, KK or CM11?
For example, to make only transparent statusbar on JB, you need to decompile/edit 3 apk's and 1 jar...
Click to expand...
Click to collapse
Hello guy i need a example for make transparent toogles and notiFICATIOns is for Kitkat but i need a exaple ok
Mark XP said:
Hello guy i need a example for make transparent toogles and notiFICATIOns is for Kitkat but i need a exaple ok
Click to expand...
Click to collapse
Try this:
In LGSystemUI\smali\com\android\systemui\statusbar\phone\PhoneStatusBar.smali, find line:
Code:
Lcom/android/systemui/statusbar/phone/PhoneStatusBar$FastColorDrawable;-><init>(I)V
and remove line below:
Code:
invoke-virtual {v1, v4}, Landroid / view / View; -> setBackground (Landroid / graphics / drawable / Drawable;) V
To adjust transparency, change in LGSystemUI\res\values\colors.xml red value
Code:
<color name="bg_expanded">#[COLOR="Red"]ef000000[/COLOR]</color>
to:
bf000000-25%,
7F000000 - 50%,
3F000000 - 75%,
00000000 - 100%
For toggles etc use brain and try change it like described here:
http://forum.xda-developers.com/showthread.php?t=2078585
or simply make transparent pictures of that backgrounds in eg. Paint.net...
Another way (suitable for all platforms) is to install Xposed/GravityBox (your device should be rooted). There you have the Transparency Management tab that will give you just that. I suggest installing this module for many other reasons (best tweaking module out there).

Categories

Resources