I am using cm10.1.
But I want to make some modifications of it.
Lock screen is not utilizing all the spaces.
I want to change the lock screen with S3/Sony/Etc...
Anything...
Or how to maximize that lockscreen numbers and size of that....
Sent from my GT-S7500 using Xparent BlueTapatalk 2
Related
I want to change the text color of the lockscreen weather temperature and lockscreen date text and charging text on lockscreen. Basically I want to change the color of everything on the lockscreen. Where are the .png files for all of these located at.
razorhog said:
I want to change the text color of the lockscreen weather temperature and lockscreen date text and charging text on lockscreen. Basically I want to change the color of everything on the lockscreen. Where are the .png files for all of these located at.
Click to expand...
Click to collapse
Lockscreen text colors are not a PNG you have to edit .XML files to change the colors
Sent from my SAMSUNG-SGH-I727 using Tapatalk 2
StolenVW said:
Lockscreen text colors are not a PNG you have to edit .XML files to change the colors
Sent from my SAMSUNG-SGH-I727 using Tapatalk 2
Click to expand...
Click to collapse
Thanks, where are they at in framework-res.
Sent from my SCH-I800 using xda app-developers app
razorhog said:
Thanks, where are they at in framework-res.
Sent from my SCH-I800 using xda app-developers app
Click to expand...
Click to collapse
I be live they're in res/layout.
Sent from my SAMSUNG-SGH-I727 using Tapatalk 2
Lockscreen clock colors are in framework-res.apk in values/colors.XML as for the date I have not found that one yet......so for I got my lock screen to aosp/transparent/blue clock
Sent from my A500 using Tapatalk 2
I know how to make the status bar transparent in TW but I would like it throughout the rest of JellyBean 4.1.2 run Synergy Rev.443 on a Samsung S3. Is it XML and/or JPGs? Any help is appreciated. Thanks!
soundmanmike said:
I know how to make the status bar transparent in TW but I would like it throughout the rest of JellyBean 4.1.2 run Synergy Rev.443 on a Samsung S3. Is it XML and/or JPGs? Any help is appreciated. Thanks!
Click to expand...
Click to collapse
Once you make it transparent... It's transparent everywhere... It's just that some apps aren't designed to be full screen so their background doesn't expand behind the status bar. This then leaves a blank black background behind the transparent status bar making it appear as if it is solid
Sent from my SCH-I535 using Xparent Skyblue Tapatalk 2
o0BlacknesS0o said:
Once you make it transparent... It's transparent everywhere... It's just that some apps aren't designed to be full screen so their background doesn't expand behind the status bar. This then leaves a blank black background behind the transparent status bar making it appear as if it is solid
Sent from my SCH-I535 using Xparent Skyblue Tapatalk 2
Click to expand...
Click to collapse
Exactly ze correct answer
o0BlacknesS0o said:
Once you make it transparent... It's transparent everywhere... It's just that some apps aren't designed to be full screen so their background doesn't expand behind the status bar. This then leaves a blank black background behind the transparent status bar making it appear as if it is solid
Sent from my SCH-I535 using Xparent Skyblue Tapatalk 2
Click to expand...
Click to collapse
I get what your saying but I am referring to the statusbar anywhere outside of TouchWiz, for example the lockscreen, they are ALL just the standard black. I've had it transparent throughout before and I have seen it in other themes. Here is a theme that has it, http://forum.xda-developers.com/showthread.php?t=1820492, I just do not want the overall look of that one. The only thing I did so far was modify XML color setting to transparent in one area.
There is a png in systemui that you can make transparent. It may or may not be named differently from ROM to ROM. I've found making that transparent works for me. If you are using a theme, that theme's systemui may override it.
[email protected]'$ [email protected]@XY
If you want to link to an image so you can make it easy to test out and swap try this... This was the method used by mentose457 on beans but should be similar on most Touchwiz ROMs
You have to edit three xmls: tw_status_bar.xml, tw_super_status_bar.xml and drawables.xml
In tw_status_bar.xml you have to tell it to look for an image instead of a color for the background.
In line 2 change:
Code:
android:background="#ff000000"
to
Code:
android:background="@drawable/stat_bar_bg"
...where stat_bar_bg is the name of you image without the extension.
In the other two xmls you need to set the background to transparent. All you have to do is change the hex codes to #00000000.
Save. Recompile. Zip. Flash. Enjoy.
Sent from my SCH-I535 using Xparent Skyblue Tapatalk 2
o0BlacknesS0o said:
If you want to link to an image so you can make it easy to test out and swap try this... This was the method used by mentose457 on beans but should be similar on most Touchwiz ROMs
You have to edit three xmls: tw_status_bar.xml, tw_super_status_bar.xml and drawables.xml
In tw_status_bar.xml you have to tell it to look for an image instead of a color for the background.
In line 2 change:
Code:
android:background="#ff000000"
to
Code:
android:background="@drawable/stat_bar_bg"
...where stat_bar_bg is the name of you image without the extension.
In the other two xmls you need to set the background to transparent. All you have to do is change the hex codes to #00000000.
Save. Recompile. Zip. Flash. Enjoy.
Sent from my SCH-I535 using Xparent Skyblue Tapatalk 2
Click to expand...
Click to collapse
I did all that and still no change in the transparency, does anyone know if Synergy 443 is doing something different that would effect that from working. I am running the Ultimate Real Icon Theme on top of that. I must be missing something, I am pretty familiar with theming but this one is confusing...Thanks!
soundmanmike said:
I did all that and still no change in the transparency, does anyone know if Synergy 443 is doing something different that would effect that from working. I am running the Ultimate Real Icon Theme on top of that. I must be missing something, I am pretty familiar with theming but this one is confusing...Thanks!
Click to expand...
Click to collapse
So... When you added the new image listed above... did you make the image transparent?
Sent from my SPH-I535 using Xparent Skyblue Tapatalk 2
o0BlacknesS0o said:
So... When you added the new image listed above... did you make the image transparent?
Sent from my SPH-I535 using Xparent Skyblue Tapatalk 2
Click to expand...
Click to collapse
Most definitely... I have come across other threads discussing this same idea and some said it could not be done and others said it only works if using a live wallpaper on the home and lock screens. I can confirm that the lock screen works with a transparent status bar IF a live wallpaper is used but not within any other apps that are not TouchWiz.
o0BlacknesS0o said:
If you want to link to an image so you can make it easy to test out and swap try this... This was the method used by mentose457 on beans but should be similar on most Touchwiz ROMs
You have to edit three xmls: tw_status_bar.xml, tw_super_status_bar.xml and drawables.xml
In tw_status_bar.xml you have to tell it to look for an image instead of a color for the background.
In line 2 change:
Code:
android:background="#ff000000"
to
Code:
android:background="@drawable/stat_bar_bg"
...where stat_bar_bg is the name of you image without the extension.
In the other two xmls you need to set the background to transparent. All you have to do is change the hex codes to #00000000.
Save. Recompile. Zip. Flash. Enjoy.
Sent from my SCH-I535 using Xparent Skyblue Tapatalk 2
Click to expand...
Click to collapse
Makes sense....gonna give it a go on mah note 2
So has anyone gotten this figured out (i.e. transparency throughout?) TW, I have figured accomplished but the other transparencies on the lock screen and all running apps?
Hi.
Finally rooted and installed Gravity Box. Sadly there seems to be a problem with transparency while using KK style status bar while in lockscreen.
Is it just me, or anyone else have this problem?
Sent from my XT1032 using xda app-developers app
Working fine here. Did you play around with the transparency slider?
The only bug I found is that the nav bar doesn't stay transparent, you have to drag the status bar once for it become transparent. Other than that no issue.
Sent from my XT1032 using Tapatalk
I fixed that by installing motoXposed
Sent from my XT1032 using xda app-developers app
In the lockscreen settings in Gravity Box, there should be an option called "remove lockscreen shade". Or something along those lines. That will make the lockscreen the same 100% transparency that your status bar is.
That solves the problem.
But I like the dark tint of the lockscreen ;(
If you like the tint, keep the shade enabled and change the lockscreen transparency to 55%. Should blend nicely.
Sent from my XT1034 using Tapatalk
Cool, 57% fits well for my wallpaper.
Thanks.
Sent from my XT1032 using xda app-developers app
It's 55 percent on the s4 running aosp so don't worry it's not a Moto g bug.
Sent from my XT1032 using Tapatalk
Hello,
I tried inverted colors only once and now I always have shortcut button for inverted colors in pulldown menu. Because I don't want it to be there, is it possible to remove it on non rooted phone?
Thanx
Sent from my Nexus 5 using Tapatalk
-A-P-M- said:
Hello,
I tried inverted colors only once and now I always have shortcut button for inverted colors in pulldown menu. Because I don't want it to be there, is it possible to remove it on non rooted phone?
Thanx
Sent from my Nexus 5 using Tapatalk
Click to expand...
Click to collapse
It'll remove itself once it's not used again after a few days. Another quirky feature of L
Has anyone done any theming/color changing to their power menu? I have been looking on how to change background on power menu but I'm not experienced enough to get how to do it. If anyone has background colors or themes for power menu I can use, I would appreciate it. I'm running note 3 5.0 alliance rom. Thanks in advance
Alliance rom has setting to edit your background power menu color.
Sent From Samsung Galaxy Note Pink Using Pink Tapatalk
Maybe I'm not doing something right but it's not working
Sent from my SM-N900T using XDA Free mobile app
Are u sure ? Background of power menu located in theme / background color / pop up color
And text color theme / text color / pop up text color
Sent From Samsung Galaxy Note Pink Using Pink Tapatalk
I can get the text color and icon color to work but the background never changes. Any ideas?
Sent from my SM-N900T using XDA Free mobile app
Do you know which options I need to check for power menu background
Sent from my SM-N900T using XDA Free mobile app
Nevermind. I found it. I needed to tick the pop-up option
Sent from my SM-N900T using XDA Free mobile app