Hi, I have a request...
I'm looking for app or Xposed Framework module, which displays WiFi SSID in statusbar near to WiFi icon.
It is possible?
Thank you.
I am also searching for this, but I don't find it till now.
So new Xposed module from @pyler
http://forum.xda-developers.com/xposed/modules/module-xssid-indicator-t2718871
NOTICE: Xposed for Lollipop itself is in alpha at present, so there is expected to be some unstabilities that is related to Xposed Framework itself but not this module.
Introduction
It is known to us all that accroding to Google's Material Design, the phone status bar should be of the color that defined in app style named "colorPrimaryDark". Unfortunately, not all of the apps support this style attribute (for now), resulting in a completely black status bar on Lollipop. This module aims to fix that, to make the status bar the color it should be.
Actually, I know there have been a dozen of modules of this kind, but none of them are specially optimized for Lollipop. Lollipop provides a much more convenient API to change the background of status bar, but those modules are still using the old way (find and hook the status bar view, then change the color) on Lollipop. The old method looks perfect on ICS, JB, KK, but not perfect on Lollipop, as Lollipop have animations on status bar while switching between activities also. Hooking the status bar view will override this animation. This is why I wrote this module.
I still hold the hope that this module should be deprecated one day, the day that most of the apps have adapted to the style of Material Design.
Features
* Change the status bar background to a slightly darkened color of the app's top
* White-ify status bar icons
Requirements
* >= Lollipop (Android 5.0.x) (Except Samsung's stock roms, as Xposed does not work on them)
* Xposed Framework
ONLY tested on CM12 and AOSP Lollipop, do not know if it is going to work on other custom roms or stock roms by manufactorers
Installation
1. Go to Xposed Installer, select "Download"
2. Refresh and search for "Lolistat"
3. Download the latest version and install
4. Enable it in Xposed
5. Reboot and enjoy!
Download
From Xposed store: http://repo.xposed.info/module/info.papdt.lolistat
Source Code
Source code of this module is opened under the terms of GNU General Public License version 3
https://github.com/PeterCxy/Lolistat
Reporting bugs
Just reply this thread, or open an issue at the GitHub page above.
As a student developer, I may not have time to reply each of the bug reports, but confirmed bugs are in the list and I will try to fix them when I have time.
FAQs
Q:Some apps behave abnormally after enabling Lolistat, any solutions?
A:It is known that some apps just behave abnormally after setting status bar and navigation bar colors for them. I have tried but have not found any solutions yet. For now, temporarily blacklisting them in Lolistat settings may be the best solution.
Q:Could you backport this module to KK/JB/ICS?
A:I'm sorry, but no. This module is specially designed for Lollipop. If you are currently using Android versions earlier than Lollipop, you can choose other Xposed modules such as Flat Style Status Bar.
Donations
If you love this module, you could donate to me via the links in the "About" section of Lolistat app to support the developement.
Credits
This module is not possible without:
* @rovo89 for his awesome Xposed Framework
* @MohammadAG for his module sources that helped me when I wrote this module
* PA project and other modules that change the status bar color for their inspiration
Changelog
1.1.1
- Refactor to fix memory leak (this time it should not happen any more)
- Fix the cases that blacklist refuses to work
1.1.0
- Exclude fullscreen activities
- Fix color for apps that automatically collapse ActionBar
- Introduce Settings UI for customizations and blacklisting (and donation link via PayPal)
- Decrease color refreshing interval
1.0.2
- Fixed the bug that some apps expand behind navigation bar
- Remove black screens in several apps
- Avoid freezing app
- Tint navigation bar also
- Match the app title color in "recent apps" with the status bar color
1.0.1
- Prevent potential memory leak
- Reduce memory occupation and improve performance
- Fix incorrect colors
- Ignore translucent & floating(dialog) activities to prevent conflicts
1.0.0
Initial release.
Module is working great, but the 1.0.1 update caused Nova Launcher to have a black status bar instead of transparent. Other than that, great work!
I'm having problems with whatsapp, blackscreen when scrolling conversations.
Thanks for your report. Is your Nova Launcher default?
xDroid4Lifex said:
Module is working great, but the 1.0.1 update caused Nova Launcher to have a black status bar instead of transparent. Other than that, great work!
Click to expand...
Click to collapse
Thanks for your response. Are you using Nova as default launcher?
Thanks for this module, it's working perfectly on my nexus 5 with 5.0.1 xtrasmooth rom.
Works fine on latest Blisspop for hlte
Working on cataclysm, nexus 5 but with bugs. Instagram and Facebook status bar changes but they freeze when scrolling. 9gag shows nothing, just black and poweramp lost gui but buttons work. Great work nonetheless, thx. Hopefully it can be fixed.
1.0.1 update has flicker on certain apps
thanks for the good work. Just wanted to notify after the update from 1.0 to 1.0.1 i see screen flicker on certain apps like flipboard
PeterCxy said:
Thanks for your response. Are you using Nova as default launcher?
Click to expand...
Click to collapse
Yes its my default launcher.
best tinted status bar app.
time is instant.
love this
Simple and work fine.
Sent from my Nexus 4 using Tapatalk 2
@PeterCxy I really wish there would be a feature soon where it can be applied only on select apps, because in some cases, it completely ruins the app and is better off with a black status bar...
But overall, pretty impressive. ?
xDroid4Lifex said:
Yes its my default launcher.
Click to expand...
Click to collapse
Many thanks, I'll take a look later.
@PeterCxy
I installed this module and it is the best I have ever tried.
Can I ask for a feature? It would be better if you can add the support to change the bar where it is written the name of the app in multitasking view.
It is a feature that none module has and I'm sure that if you add it this module will be the most downloaded one in this category.
Thanks again
Ciao600 said:
PeterCxy
I installed this module and it is the best I have ever tried.
Can I ask for a feature? It would be better if you can add the support to change the bar where it is written the name of the app in multitasking view.
It is a feature that none module has and I'm sure that if you add it this module will be the most downloaded one in this category.
Thanks again
Click to expand...
Click to collapse
I'm looking for the approach to do this.
PeterCxy said:
I'm looking for the approach to do this.
Click to expand...
Click to collapse
Thank you for considering my request [emoji106]
VERY nice module. I also think it is the best for Lolipop, works perfectly.
Just one question : why do you draken the bar color ? Could it be possible to set that as a option ? The idea is to display the same color than in the page.
I succeeded recompile the module and made some changes :
window.setStatusBarColor(Utility.darkenColor(color, 0.85f));
window.setStatusBarColor(color);
Click to expand...
Click to collapse
Works sometimes but for example with gmail the status bar color is still darker. I added some log to the code and I saw that the afterHookedMethod method is not always called ??
Thanks for your answer, @PeterCxy !
PS : I found that I can use "Tinted Status bar" module as the same time. I use it to force colors for app like Gmail and disable it for application like Google Play where your module works (even if darker, it's better than nothing !)
Cool module!
The new update causes mx player controls to become invisible. Didn't have this issue in v1.
i got issue with bbm app. action bar(bottom) cutted by navbar...
krishnaj said:
thanks for the good work. Just wanted to notify after the update from 1.0 to 1.0.1 i see screen flicker on certain apps like flipboard
Click to expand...
Click to collapse
I also experience this on certain apps. I'm using a 2014 Moto X. Like Whatsapp or Yahoo News Digest while scrolling. I like the module though, works very well.
Hello.
I just installed KitKat from http://forum.xda-developers.com/oma...rom-omate-truesmart-ironman-firmware-t2998434 and it looks like most apps launch in fullscreen mode and I have trouble getting the status bar back anywhere except from the default launcher.
Is there a way to disable this "fullscreen by default" setting anywhere?
stanelie said:
Is there a way to disable this "fullscreen by default" setting anywhere?
Click to expand...
Click to collapse
No, this is changed in the ROM. We do not know how it is done, the Umeox/MediaTek changes are hidden.
The change is different from 4.2, so SwipeStatusBar very seldom work.
The workaround is rooting, Xposed, GravityBox and enabling Expanded Desktop.
Permanent status bar
I finally have a working PoC for permanently enabling the status bar in every app, and will try to build an Xposed module to control the visibility of the status bar in these smart watches. I'll be back
Edit:
I'm back.
Xposed module to enable the status bar in (most) launchers:
http://forum.xda-developers.com/xposed/modules/truesmart-status-bar-custom-launchers-t3063624
(N.B! Only tested on a 4.4 ROM)
Hello. I have Huawei p8 lite, and it had android 5.0
Now, i got a new upgrade to android 6.0 Marshmallow, so i upgraded it, but before i did, i turned on network speed in status bar and when android upgraded that option was gone from settings but the speed meter is still on status bar and now i can't hide it. My question is, how do i disable network speed meter from status bar on android 6.0 Marshmallow? Thank you in advance!
Fixed by restoring factory settings! It's gone now. [Solved]